Message ID | 20210507150100.968659-3-brauner@kernel.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | idmapped mounts: extend testsuite and fixes | expand |
diff --git a/src/idmapped-mounts/idmapped-mounts.c b/src/idmapped-mounts/idmapped-mounts.c index 66bdd817..59a3daa8 100644 --- a/src/idmapped-mounts/idmapped-mounts.c +++ b/src/idmapped-mounts/idmapped-mounts.c @@ -620,7 +620,7 @@ __attribute__((unused)) static int print_r(int fd, const char *path) ret = fstatat(fd, path, &st, AT_NO_AUTOMOUNT | AT_SYMLINK_NOFOLLOW); if (!ret) - fprintf(stderr, "mode(%o):uid(%d):gid(%d) -> %s", + fprintf(stderr, "mode(%o):uid(%d):gid(%d) -> %s\n", (st.st_mode & ~S_IFMT), st.st_uid, st.st_gid, (path && *path) ? path : "(null)");