Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2021-08-15 21:08:53 +0300
committerDenys Vlasenko <vda.linux@googlemail.com>2021-08-15 21:08:53 +0300
commit21afddefd2587daeb86317c134221e5b8c897445 (patch)
treed7d9e788aa19f69dfa62b3df40861d1e4b8d943e
parent2a1ce6b20e787525fa9adae9e68fa08e93374863 (diff)
hush: fix "error: invalid preprocessing directive ##"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index c970d9097..27092c12f 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -5012,7 +5012,7 @@ static int parse_dollar_squote(o_string *as_string, o_string *dest, struct in_st
# undef as_string
}
#else
-# #define parse_dollar_squote(as_string, dest, input) 0
+# define parse_dollar_squote(as_string, dest, input) 0
#endif /* BASH_DOLLAR_SQUOTE */
/* Return code: 0 for OK, 1 for syntax error */