From: Dave Mitchell Date: Fri, 5 Dec 2008 22:22:30 +0000 (+0000) Subject: remove syntax error from < 5.10 branch of Data::Dumper X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=96109fb7402ec7899d1f69e2e6b6abbcd6f2c769;p=p5sagit%2Fp5-mst-13.2.git remove syntax error from < 5.10 branch of Data::Dumper p4raw-id: //depot/perl@35021 --- diff --git a/ext/Data/Dumper/Dumper.xs b/ext/Data/Dumper/Dumper.xs index af5c2e2..e7a342e 100644 --- a/ext/Data/Dumper/Dumper.xs +++ b/ext/Data/Dumper/Dumper.xs @@ -195,7 +195,7 @@ esc_q_utf8(pTHX_ SV* sv, register const char *src, register STRLEN slen) #if PERL_VERSION < 10 sprintf(r, "\\x{%"UVxf"}", k); r += strlen(r); - #my_sprintf is not supported by ppport.h + /* my_sprintf is not supported by ppport.h */ #else r = r + my_sprintf(r, "\\x{%"UVxf"}", k); #endif