From: Christian Brauner <christian.brauner@xxxxxxxxxx> The function missed to print a newline making the output difficult to read when running with DEBUG_TRACE. Cc: fstests@xxxxxxxxxxxxxxx Cc: Christoph Hellwig <hch@xxxxxx> Signed-off-by: Christian Brauner <christian.brauner@xxxxxxxxxx> --- src/idmapped-mounts/idmapped-mounts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)"); -- 2.27.0