summaryrefslogtreecommitdiff
path: root/src/switchroot/ostree-remount.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/switchroot/ostree-remount.c')
-rw-r--r--src/switchroot/ostree-remount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/switchroot/ostree-remount.c b/src/switchroot/ostree-remount.c
index 4044b5ac..a81c1b41 100644
--- a/src/switchroot/ostree-remount.c
+++ b/src/switchroot/ostree-remount.c
@@ -70,7 +70,7 @@ do_remount (const char *target,
/* Also ignore EINVAL - if the target isn't a mountpoint
* already, then assume things are OK.
*/
- if (errno != EINVAL)
+ if (errno != EINVAL)
err (EXIT_FAILURE, "failed to remount(%s) %s", writable ? "rw" : "ro", target);
else
return;