Commit e719b6cc authored by Max Kellermann's avatar Max Kellermann

Stats: print db_update as unsigned integer

parent 67b8124a
......@@ -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());
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment