1
1
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:
Lennart Poettering 2016-07-21 18:08:52 +02:00
parent 1089dcd469
commit 2a6736ddd0

View File

@ -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");
}