From: Lennart Poettering Date: Wed, 29 Jan 2014 13:59:45 +0000 (+0100) Subject: core: use a bit more PID_FMT X-Git-Tag: v209~294 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=6294b8a92db8579210d4fc9ce74097a15005b3e6 core: use a bit more PID_FMT --- diff --git a/src/core/unit.c b/src/core/unit.c index 0ad679ba6..6427f9137 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -2938,8 +2938,7 @@ int unit_kill_context( _cleanup_free_ char *comm = NULL; get_process_comm(main_pid, &comm); - log_warning_unit(u->id, "Failed to kill main process %li (%s): %s", - (long) main_pid, strna(comm), strerror(-r)); + log_warning_unit(u->id, "Failed to kill main process " PID_FMT " (%s): %s", main_pid, strna(comm), strerror(-r)); } else { wait_for_exit = !main_pid_alien; @@ -2955,9 +2954,7 @@ int unit_kill_context( _cleanup_free_ char *comm = NULL; get_process_comm(control_pid, &comm); - log_warning_unit(u->id, - "Failed to kill control process %li (%s): %s", - (long) control_pid, strna(comm), strerror(-r)); + log_warning_unit(u->id, "Failed to kill control process " PID_FMT " (%s): %s", control_pid, strna(comm), strerror(-r)); } else { wait_for_exit = true;