This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
patch for more flexible initialization of xsub parameters
[perl5.git] / av.h
diff --git a/av.h b/av.h
index fd34cb0..8de81f4 100644 (file)
--- a/av.h
+++ b/av.h
@@ -47,6 +47,5 @@ struct xpvav {
 #define AvREALISH(av)  (AvFLAGS(av) & (AVf_REAL|AVf_REIFY))
                                           
 #define AvFILL(av)     ((SvRMAGICAL((SV *) (av))) \
-                           ? mg_size((SV *) av) \
-                           : AvFILLp(av))
+                         ? mg_size((SV *) av) : AvFILLp(av))