From: Gurusamy Sarathy Date: Thu, 16 Dec 1999 09:26:53 +0000 (+0000) Subject: type mismatch for %c format argument (spotted by Robin Barker X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=447ff9551c50798a747b45c129b114764be73459;p=p5sagit%2Fp5-mst-13.2.git type mismatch for %c format argument (spotted by Robin Barker ) p4raw-id: //depot/perl@4683 --- diff --git a/regcomp.c b/regcomp.c index 83438e9..f935190 100644 --- a/regcomp.c +++ b/regcomp.c @@ -2918,7 +2918,7 @@ S_regclass(pTHX) Perl_warner(aTHX_ WARN_UNSAFE, "/%.127s/: Unrecognized escape \\%c in character class passed through", PL_regprecomp, - value); + (int)value); break; } } @@ -3391,7 +3391,7 @@ S_regclassutf8(pTHX) Perl_warner(aTHX_ WARN_UNSAFE, "/%.127s/: Unrecognized escape \\%c in character class passed through", PL_regprecomp, - value); + (int)value); break; } }