diff options
author | Max Kellermann <max@duempel.org> | 2013-11-21 23:34:32 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-22 00:04:58 +0100 |
commit | e719b6cc410cc0d9699df7ab5c308d6af4ec01e3 (patch) | |
tree | ca517225522a79e88662f6d23efca6e333a1ae6d /src | |
parent | 67b8124a1d34c2fa850005317503663407b9648e (diff) | |
download | mpd-e719b6cc410cc0d9699df7ab5c308d6af4ec01e3.tar.gz mpd-e719b6cc410cc0d9699df7ab5c308d6af4ec01e3.tar.xz mpd-e719b6cc410cc0d9699df7ab5c308d6af4ec01e3.zip |
Stats: print db_update as unsigned integer
Diffstat (limited to '')
-rw-r--r-- | src/Stats.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Stats.cxx b/src/Stats.cxx index 88f76928f..6cd6977ec 100644 --- a/src/Stats.cxx +++ b/src/Stats.cxx @@ -83,6 +83,6 @@ stats_print(Client &client) if (db_is_simple()) client_printf(client, - "db_update: %li\n", - (long)db_get_mtime()); + "db_update: %lu\n", + (unsigned long)db_get_mtime()); } |