This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
parts/inc/ppphbin: Change variable name
[perl5.git] / op.h
diff --git a/op.h b/op.h
index 7444965..80b1d9c 100644 (file)
--- a/op.h
+++ b/op.h
@@ -1116,8 +1116,8 @@ C<sib> is non-null. For a higher-level interface, see C<L</op_sibling_splice>>.
 /* stuff for OP_ARGCHECK */
 
 struct  op_argcheck_aux {
-    IV   params;     /* number of positional parameters */
-    IV   opt_params; /* number of optional positional parameters */
+    UV   params;     /* number of positional parameters */
+    UV   opt_params; /* number of optional positional parameters */
     char slurpy;     /* presence of slurpy: may be '\0', '@' or '%' */
 };