Stats: print db_update as unsigned integer

This commit is contained in:
Max Kellermann 2013-11-21 23:34:32 +01:00
parent 67b8124a1d
commit e719b6cc41

View File

@ -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());
}