diff options
Diffstat (limited to '')
-rw-r--r-- | src/Stats.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Stats.cxx b/src/Stats.cxx index 35c162ef2..d08074a8c 100644 --- a/src/Stats.cxx +++ b/src/Stats.cxx @@ -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; } |