summaryrefslogtreecommitdiff
path: root/src/nm-auth-subject.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-auth-subject.c
parente207e534507da134ac4a9725a0e58e87a6093835 (diff)
downloadNetworkManager-b1eeb009371251d5a8115bfb16fac1d1504e5a90.tar.gz
all: use "unsigned long" instead of "long unsigned"
Diffstat (limited to 'src/nm-auth-subject.c')
-rw-r--r--src/nm-auth-subject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nm-auth-subject.c b/src/nm-auth-subject.c
index ac7b31cc12..0f40ff7c22 100644
--- a/src/nm-auth-subject.c
+++ b/src/nm-auth-subject.c
@@ -88,9 +88,9 @@ nm_auth_subject_to_string (NMAuthSubject *self, char *buf, gsize buf_len)
switch (priv->subject_type) {
case NM_AUTH_SUBJECT_TYPE_UNIX_PROCESS:
g_snprintf (buf, buf_len, "unix-process[pid=%lu, uid=%lu, start=%llu]",
- (long unsigned) priv->unix_process.pid,
- (long unsigned) priv->unix_process.uid,
- (long long unsigned) priv->unix_process.start_time);
+ (unsigned long) priv->unix_process.pid,
+ (unsigned long) priv->unix_process.uid,
+ (unsigned long long) priv->unix_process.start_time);
break;
case NM_AUTH_SUBJECT_TYPE_INTERNAL:
g_strlcat (buf, "internal", buf_len);