diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-13 09:08:24 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2018-11-13 11:58:44 +0100 |
commit | 705727fd7687e16737b79f2f66410c2e1d502e37 (patch) | |
tree | f41ceb44398484f720faea8e3ccc0117f3cb2447 | |
parent | bd897e729a90516125802b8346474404f342c820 (diff) | |
download | systemd-705727fd7687e16737b79f2f66410c2e1d502e37.tar.gz systemd-705727fd7687e16737b79f2f66410c2e1d502e37.tar.bz2 systemd-705727fd7687e16737b79f2f66410c2e1d502e37.zip |
shared/dissect-image: drop parens
-rw-r--r-- | src/shared/dissect-image.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/dissect-image.c b/src/shared/dissect-image.c index 7841f4a359..c6b7a02ad9 100644 --- a/src/shared/dissect-image.c +++ b/src/shared/dissect-image.c @@ -769,7 +769,7 @@ int dissected_image_mount(DissectedImage *m, const char *where, uid_t uid_shift, } } - if ((flags & DISSECT_IMAGE_MOUNT_ROOT_ONLY)) + if (flags & DISSECT_IMAGE_MOUNT_ROOT_ONLY) return 0; r = mount_partition(m->partitions + PARTITION_HOME, where, "/home", uid_shift, flags); |