From dda65f56ff343fb63c6f5c9dbde1a88b22c0c41b Mon Sep 17 00:00:00 2001 From: Daniel Mack Date: Thu, 21 Jan 2016 16:35:19 +0100 Subject: sysusers: use GID_FMT and UID_FMT instead of %d --- src/sysusers/sysusers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/sysusers') diff --git a/src/sysusers/sysusers.c b/src/sysusers/sysusers.c index 90a2111ec5..b1dd7e1913 100644 --- a/src/sysusers/sysusers.c +++ b/src/sysusers/sysusers.c @@ -416,7 +416,7 @@ static int write_files(void) { } if (hashmap_contains(todo_gids, GID_TO_PTR(gr->gr_gid))) { - log_error("%s: Detected collision for GID %d.", group_path, gr->gr_gid); + log_error("%s: Detected collision for GID " GID_FMT ".", group_path, gr->gr_gid); r = -EEXIST; goto finish; } @@ -557,7 +557,7 @@ static int write_files(void) { } if (hashmap_contains(todo_uids, UID_TO_PTR(pw->pw_uid))) { - log_error("%s: Detected collision for UID %d.", passwd_path, pw->pw_uid); + log_error("%s: Detected collision for UID " UID_FMT ".", passwd_path, pw->pw_uid); r = -EEXIST; goto finish; } -- cgit v1.2.3-54-g00ecf