Silence another Irix compiler warning.
Nicholas Clark [Mon, 30 Jan 2006 16:50:38 +0000 (16:50 +0000)]
p4raw-id: //depot/perl@27006

toke.c

diff --git a/toke.c b/toke.c
index 8f90366..5586d08 100644 (file)
--- a/toke.c
+++ b/toke.c
@@ -207,8 +207,11 @@ enum token_type {
     TOKENTYPE_GVVAL
 };
 
-static struct debug_tokens { const int token, type; const char *name; }
-  const debug_tokens[] =
+static struct debug_tokens {
+    const int token;
+    enum token_type type;
+    const char *name;
+} const debug_tokens[] =
 {
     { ADDOP,           TOKENTYPE_OPNUM,        "ADDOP" },
     { ANDAND,          TOKENTYPE_NONE,         "ANDAND" },