mirror of
https://github.com/systemd/systemd.git
synced 2026-07-25 00:35:55 +00:00
systemctl: fix format string for uint64_t field
This commit is contained in:
@@ -3809,7 +3809,7 @@ static void print_status_info(
|
||||
printf(" Tasks: %" PRIu64, i->tasks_current);
|
||||
|
||||
if (i->tasks_max != (uint64_t) -1)
|
||||
printf(" (limit: %" PRIi64 ")\n", i->tasks_max);
|
||||
printf(" (limit: %" PRIu64 ")\n", i->tasks_max);
|
||||
else
|
||||
printf("\n");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user