mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-23 17:34:00 +03:00
systemctl: fix format string for uint64_t field
This commit is contained in:
parent
1089dcd469
commit
2a6736ddd0
@ -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");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user