Commit fcd14906 authored by Fabrice Bellet's avatar Fabrice Bellet Committed by Olivier Crête

conncheck: fix timer remainder return value

We show the timer remainder in milliseconds.
parent d4ef6b69
......@@ -85,7 +85,7 @@ static gint64 priv_timer_remainder (gint64 timer, gint64 now)
if (now >= timer)
return 0;
return timer - now;
return (timer - now) / 1000;
}
static gchar
......
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