Fix type of sleep_time_ms in fprintf

This commit is contained in:
Konstantin Pereiaslov
2023-05-28 20:03:10 -05:00
parent afc9928d35
commit 465efe02ad

2
main.c
View File

@@ -251,7 +251,7 @@ int main(int argc, char *argv[]) {
}
if (verbose) {
fprintf(stderr,
"Polling every second is temporarily disabled due to user activity, idle time: %lums, next activity check scheduled in %lums\n",
"Polling every second is temporarily disabled due to user activity, idle time: %lums, next activity check scheduled in %lldms\n",
info->idle,
sleep_time_ms
);