Change 32783 was generating warnings from gcc about an extra semicolon
Nicholas Clark [Sun, 30 Dec 2007 20:23:54 +0000 (20:23 +0000)]
in structure or union. No doubt some non-sloppy compilers will consider
this an error and barf. We don't like barfing.

p4raw-id: //depot/perl@32785

hv.h

diff --git a/hv.h b/hv.h
index b1f2ce2..8d4088e 100644 (file)
--- a/hv.h
+++ b/hv.h
@@ -68,7 +68,7 @@ struct xpvhv_aux {
 
 #define _XPVHV_ALLOCATED_HEAD                                              \
     STRLEN     xhv_fill;       /* how full xhv_array currently is */       \
-    STRLEN     xhv_max;        /* subscript of last element of xhv_array */
+    STRLEN     xhv_max         /* subscript of last element of xhv_array */
 
 #define _XPVHV_HEAD    \
     union _xnvu xnv_u; \