diff options
-rw-r--r-- | shell/ash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 0697a4785..db537c44d 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -5256,7 +5256,7 @@ memtodest(const char *p, size_t len, int syntax, int quotes) { | |||
5256 | q = makestrspace(len * 2, q); | 5256 | q = makestrspace(len * 2, q); |
5257 | 5257 | ||
5258 | while (len--) { | 5258 | while (len--) { |
5259 | int c = (unsigned char)*p++; | 5259 | int c = *p++; |
5260 | if (!c) | 5260 | if (!c) |
5261 | continue; | 5261 | continue; |
5262 | if (quotes && (SIT(c, syntax) == CCTL || SIT(c, syntax) == CBACK)) | 5262 | if (quotes && (SIT(c, syntax) == CCTL || SIT(c, syntax) == CBACK)) |