Stats: stats_print() returns void

This commit is contained in:
Max Kellermann
2012-08-28 20:52:07 +02:00
parent fb0a52a34a
commit 25740d27bf
3 changed files with 6 additions and 5 deletions

View File

@@ -66,7 +66,8 @@ void stats_update(void)
}
}
int stats_print(struct client *client)
void
stats_print(struct client *client)
{
client_printf(client,
"artists: %u\n"
@@ -86,6 +87,4 @@ int stats_print(struct client *client)
client_printf(client,
"db_update: %li\n",
(long)db_get_mtime());
return 0;
}