Stats: print more unsigned integers
This commit is contained in:
parent
ff1c1107f3
commit
042fe2a9d0
@ -72,15 +72,15 @@ stats_print(Client &client)
|
|||||||
client_printf(client,
|
client_printf(client,
|
||||||
"artists: %u\n"
|
"artists: %u\n"
|
||||||
"albums: %u\n"
|
"albums: %u\n"
|
||||||
"songs: %i\n"
|
"songs: %u\n"
|
||||||
"uptime: %li\n"
|
"uptime: %lu\n"
|
||||||
"playtime: %li\n"
|
"playtime: %lu\n"
|
||||||
"db_playtime: %li\n",
|
"db_playtime: %lu\n",
|
||||||
stats.artist_count,
|
stats.artist_count,
|
||||||
stats.album_count,
|
stats.album_count,
|
||||||
stats.song_count,
|
stats.song_count,
|
||||||
(long)g_timer_elapsed(uptime, NULL),
|
(unsigned long)g_timer_elapsed(uptime, NULL),
|
||||||
(long)(client.player_control.GetTotalPlayTime() + 0.5),
|
(unsigned long)(client.player_control.GetTotalPlayTime() + 0.5),
|
||||||
stats.total_duration);
|
stats.total_duration);
|
||||||
|
|
||||||
if (db_is_simple())
|
if (db_is_simple())
|
||||||
|
Loading…
Reference in New Issue
Block a user