diff options
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12495,7 +12495,7 @@ Perl_yyerror(pTHX_ const char *s) if (yychar < 32) Perl_sv_catpvf(aTHX_ where_sv, "^%c", toCTRL(yychar)); else if (isPRINT_LC(yychar)) { - const unsigned char string = (unsigned char) yychar; + const char string = yychar; sv_catpvn(where_sv, &string, 1); } else |