diff options
Diffstat (limited to 'miscutils')
| -rw-r--r-- | miscutils/bc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 28bc40c8b..1ef8f418d 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
| @@ -5525,7 +5525,7 @@ static void xc_program_printString(const char *str) | |||
| 5525 | char c = *str++; | 5525 | char c = *str++; |
| 5526 | if (c == '\\') { | 5526 | if (c == '\\') { |
| 5527 | static const char esc[] ALIGN1 = "nabfrt""e\\"; | 5527 | static const char esc[] ALIGN1 = "nabfrt""e\\"; |
| 5528 | char *n; | 5528 | const char *n; |
| 5529 | 5529 | ||
| 5530 | c = *str++; | 5530 | c = *str++; |
| 5531 | n = strchr(esc, c); // note: if c is NUL, n = \0 at end of esc | 5531 | n = strchr(esc, c); // note: if c is NUL, n = \0 at end of esc |
