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) ...@@ -83,6 +83,6 @@ stats_print(Client &client)
if (db_is_simple()) if (db_is_simple())
client_printf(client, client_printf(client,
"db_update: %li\n", "db_update: %lu\n",
(long)db_get_mtime()); (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