diff options
author | Michal Schmidt <mschmidt@redhat.com> | 2015-11-05 13:44:20 +0100 |
---|---|---|
committer | Michal Schmidt <mschmidt@redhat.com> | 2015-11-09 20:01:06 +0100 |
commit | e1427b138fbf7b7f13bb61187635b882be3ca2b2 (patch) | |
tree | b3ce451e25222b085aee42f70bcd8ae46386642b /src/nspawn/nspawn-mount.c | |
parent | b3e3bb19a06795ee1eb3679a839f4687ba99143f (diff) |
treewide: apply errno.cocci
with small manual cleanups for style.
Diffstat (limited to 'src/nspawn/nspawn-mount.c')
-rw-r--r-- | src/nspawn/nspawn-mount.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nspawn/nspawn-mount.c b/src/nspawn/nspawn-mount.c index ee61306aa5..c8e627ac78 100644 --- a/src/nspawn/nspawn-mount.c +++ b/src/nspawn/nspawn-mount.c @@ -441,8 +441,7 @@ static int mount_bind(const char *dest, CustomMount *m) { if (r < 0) return log_error_errno(r, "Failed to make parents of %s: %m", where); } else { - log_error_errno(errno, "Failed to stat %s: %m", where); - return -errno; + return log_error_errno(errno, "Failed to stat %s: %m", where); } /* Create the mount point. Any non-directory file can be |