This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Casting nit
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Mon, 13 Nov 2006 10:12:34 +0000 (10:12 +0000)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Mon, 13 Nov 2006 10:12:34 +0000 (10:12 +0000)
p4raw-id: //depot/perl@29256

regcomp.c

index 4a2e52b..be497af 100644 (file)
--- a/regcomp.c
+++ b/regcomp.c
@@ -4437,10 +4437,10 @@ reStudy:
 
     /* Guard against an embedded (?=) or (?<=) with a longer minlen than
        the "real" pattern. */
-    DEBUG_OPTIMISE_r({ 
-           PerlIO_printf(Perl_debug_log,"minlen: %d r->minlen:%d\n",
-               minlen, r->minlen);
-    });       
+    DEBUG_OPTIMISE_r({
+       PerlIO_printf(Perl_debug_log,"minlen: %"IVdf" r->minlen:%"IVdf"\n",
+           minlen, r->minlen);
+    });
     r->minlenret = minlen;
     if (r->minlen < minlen) 
         r->minlen = minlen;