Remove spurious semicolons
Nicholas Clark [Mon, 6 Dec 2004 13:41:45 +0000 (13:41 +0000)]
(As these 2 are spare, I guess I should send them to Mark Rhodes
(former office mate) as he often said that he kept mislaying his)

p4raw-id: //depot/perl@23614

gv.h

diff --git a/gv.h b/gv.h
index dfc74ca..6e14f44 100644 (file)
--- a/gv.h
+++ b/gv.h
@@ -154,5 +154,5 @@ Return the SV from the GV.
 #define GV_ADDINEVAL   0x08    /* add, as though we're doing so within an eval */
 #define GV_NOINIT      0x10    /* add, but don't init symbol, if type != PVGV */
 
-#define gv_fullname3(sv,gv,prefix) gv_fullname4(sv,gv,prefix,TRUE);
-#define gv_efullname3(sv,gv,prefix) gv_efullname4(sv,gv,prefix,TRUE);
+#define gv_fullname3(sv,gv,prefix) gv_fullname4(sv,gv,prefix,TRUE)
+#define gv_efullname3(sv,gv,prefix) gv_efullname4(sv,gv,prefix,TRUE)