From 6a87666e5dc079b935ff1b2e73168c205885ab66 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 1 Jan 2023 13:46:33 +0100 Subject: utils: Fix calling multi-line macro --- utils/mount.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 { -- cgit v1.2.3