Merge pull request #2405 from zonque/sysusers

sysusers: use GID_FMT and UID_FMT instead of %d
This commit is contained in:
Daniel Mack 2016-01-22 09:59:23 +01:00
commit 620b63ec02
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}