summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-01-30 16:50:38 +0000
committerNicholas Clark <nick@ccl4.org>2006-01-30 16:50:38 +0000
commit6d4a66ac96a9ddca3710bd969e6b1e2a80a8193d (patch)
treec5e738e6b812f44720213cc9a2ef38f6cf649bff /toke.c
parent41d88b63af2cdca1570f463698afc3a8b2335092 (diff)
downloadperl-6d4a66ac96a9ddca3710bd969e6b1e2a80a8193d.tar.gz
Silence another Irix compiler warning.
p4raw-id: //depot/perl@27006
Diffstat (limited to 'toke.c')
-rw-r--r--toke.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/toke.c b/toke.c
index 8f90366433..5586d0803c 100644
--- 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" },