diff options
author | Vincent Pit <vince@profvince.com> | 2009-11-10 23:26:44 +0100 |
---|---|---|
committer | Vincent Pit <vince@profvince.com> | 2009-11-10 23:26:44 +0100 |
commit | 5d6dd608aa57c352bf7dc865bd287b6a61698d4f (patch) | |
tree | 83a2611005d468d8530da2ce65fe312548e035f5 /op.c | |
parent | 484c818fbcf400d897228be2cf2b34b67be8a340 (diff) | |
download | perl-5d6dd608aa57c352bf7dc865bd287b6a61698d4f.tar.gz |
Fix misformed UVxf format in op.c
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5774,7 +5774,7 @@ Perl_newATTRSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *attrs, OP *block) if (PL_madskills) { if (strEQ(name, "import")) { PL_formfeed = MUTABLE_SV(cv); - Perl_warner(aTHX_ packWARN(WARN_VOID), UVxf"\n", (UV)cv); + Perl_warner(aTHX_ packWARN(WARN_VOID), "0x%"UVxf"\n", (UV)cv); } } GvCVGEN(gv) = 0; |