From: Lennart Poettering Date: Tue, 12 Dec 2023 09:58:56 +0000 (+0100) Subject: nspawn: suffix some paths in log messages with /, as per coding style X-Git-Tag: v256-rc1~1512^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f87cc8cd9a975d81422f22ba741b9480193c5ea;p=thirdparty%2Fsystemd.git nspawn: suffix some paths in log messages with /, as per coding style --- diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 6ab604d3dcc..22362aeeba6 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -2182,7 +2182,7 @@ static int copy_devnodes(const char *dest) { if (mknod(to, st.st_mode, st.st_rdev) < 0) { /* Explicitly warn the user when /dev is already populated. */ if (errno == EEXIST) - log_notice("%s/dev is pre-mounted and pre-populated. If a pre-mounted /dev is provided it needs to be an unpopulated file system.", dest); + log_notice("%s/dev/ is pre-mounted and pre-populated. If a pre-mounted /dev/ is provided it needs to be an unpopulated file system.", dest); if (errno != EPERM) return log_error_errno(errno, "mknod(%s) failed: %m", to);