From 21afddefd2587daeb86317c134221e5b8c897445 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 15 Aug 2021 20:08:53 +0200 Subject: [PATCH] hush: fix "error: invalid preprocessing directive ##" Signed-off-by: Denys Vlasenko --- shell/hush.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 */