diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 13:46:33 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-01 14:04:51 +0100 |
commit | 6a87666e5dc079b935ff1b2e73168c205885ab66 (patch) | |
tree | ea749e4f9c2d2289fe1cad6334e4a1fef10246b0 /utils | |
parent | 530ecc6a5dac151fdff8d84f525ae5812aad7ed3 (diff) | |
download | hurd-6a87666e5dc079b935ff1b2e73168c205885ab66.tar.gz hurd-6a87666e5dc079b935ff1b2e73168c205885ab66.tar.bz2 hurd-6a87666e5dc079b935ff1b2e73168c205885ab66.zip |
utils: Fix calling multi-line macro
Diffstat (limited to 'utils')
-rw-r--r-- | utils/mount.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/utils/mount.c b/utils/mount.c index 30e9bef3..75211d7a 100644 --- a/utils/mount.c +++ b/utils/mount.c @@ -278,7 +278,9 @@ do_mount (struct fs *fs, int remount) } if (options_len) - ARGZ (append (&mntopts, &mntopts_len, options, options_len)); + { + ARGZ (append (&mntopts, &mntopts_len, options, options_len)); + } } else { |