diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-17 10:12:02 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-09-18 23:08:03 -0400 |
commit | 60c0a3c8607b835f73e77d89b5f67a8e6bd5c8b3 (patch) | |
tree | d042bd1f7acc2f9969f26074541127974f5c8f2c | |
parent | 16597bc90b810d3457296d99bd36510321a37f24 (diff) | |
download | stasis-60c0a3c8607b835f73e77d89b5f67a8e6bd5c8b3.tar.gz |
Fix format spacing
-rw-r--r-- | src/multiprocessing.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/multiprocessing.c b/src/multiprocessing.c index 5e605a6..5eb9f81 100644 --- a/src/multiprocessing.c +++ b/src/multiprocessing.c @@ -191,7 +191,7 @@ void mp_pool_show_summary(struct MultiProcessingPool *pool) { struct timespec duration; get_task_duration(task, &duration); long diff = duration.tv_sec + duration.tv_nsec / 1000000000L; - printf("%-4s %-10d %7lds %-10s\n", status_str, task->parent_pid, diff, task->ident) ; + printf("%-4s %10d %7lds %-10s\n", status_str, task->parent_pid, diff, task->ident) ; } puts(""); } |