summaryrefslogtreecommitdiff
path: root/src/nm-core-utils.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2017-03-14 11:15:05 +0100
committerThomas Haller <thaller@redhat.com>2017-03-14 11:23:46 +0100
commitb1eeb009371251d5a8115bfb16fac1d1504e5a90 (patch)
treea8e3c540042bf906b28cb93684a1ef79eb36fc78 /src/nm-core-utils.c
parente207e534507da134ac4a9725a0e58e87a6093835 (diff)
downloadNetworkManager-b1eeb009371251d5a8115bfb16fac1d1504e5a90.tar.gz
all: use "unsigned long" instead of "long unsigned"
Diffstat (limited to 'src/nm-core-utils.c')
-rw-r--r--src/nm-core-utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nm-core-utils.c b/src/nm-core-utils.c
index b71974d838..ead86d4775 100644
--- a/src/nm-core-utils.c
+++ b/src/nm-core-utils.c
@@ -976,7 +976,7 @@ nm_utils_kill_process_sync (pid_t pid, guint64 start_time, int sig, NMLogDomain
}
if (start_time != 0 && start_time != start_time0) {
nm_log_dbg (log_domain, LOG_NAME_PROCESS_FMT ": don't kill process %ld because the start_time is unexpectedly %lu instead of %ld",
- LOG_NAME_ARGS, (long int) pid, (long unsigned) start_time0, (long unsigned) start_time);
+ LOG_NAME_ARGS, (long int) pid, (unsigned long) start_time0, (unsigned long) start_time);
return;
}