summaryrefslogtreecommitdiff
path: root/src/core/namespace.c
diff options
context:
space:
mode:
authorAsciiWolf <mail@asciiwolf.com>2017-02-24 18:14:02 +0100
committerLennart Poettering <lennart@poettering.net>2017-02-24 18:14:02 +0100
commit13e785f7a0d2c78fbd822b1157ef9d7ee3fef805 (patch)
tree168c1a8cd9b6132ef15c61a302d55303e66da06d /src/core/namespace.c
parentecc0eab247da25a6767ccabd2162a4d03de6ee8c (diff)
Fix missing space in comments (#5439)
Diffstat (limited to 'src/core/namespace.c')
-rw-r--r--src/core/namespace.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/namespace.c b/src/core/namespace.c
index 75dca5b791..4f29217bc4 100644
--- a/src/core/namespace.c
+++ b/src/core/namespace.c
@@ -799,7 +799,7 @@ static int make_read_only(MountEntry *m, char **blacklist) {
if (mount_entry_read_only(m))
r = bind_remount_recursive(mount_entry_path(m), true, blacklist);
- else if (m->mode == PRIVATE_DEV) { /* Superblock can be readonly but the submounts can't*/
+ else if (m->mode == PRIVATE_DEV) { /* Superblock can be readonly but the submounts can't */
if (mount(NULL, mount_entry_path(m), NULL, MS_REMOUNT|DEV_MOUNT_OPTIONS|MS_RDONLY, NULL) < 0)
r = -errno;
} else