From 2efd8c0a6c964b00848aa295f923628697191c7b Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Wed, 2 Mar 2016 22:52:54 +0000 Subject: [PATCH] sh: Remove a redundant STPUTC check. --- bin/sh/parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/sh/parser.c b/bin/sh/parser.c index d324d88a8f18..da6defdb2c79 100644 --- a/bin/sh/parser.c +++ b/bin/sh/parser.c @@ -1671,7 +1671,7 @@ parsesub: { c = pgetc_linecont(); } while (is_digit(c)); } else { - STPUTC(c, out); + USTPUTC(c, out); c = pgetc_linecont(); } } else if (is_special(c)) {