diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-01-30 16:50:38 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-01-30 16:50:38 +0000 |
commit | 6d4a66ac96a9ddca3710bd969e6b1e2a80a8193d (patch) | |
tree | c5e738e6b812f44720213cc9a2ef38f6cf649bff /toke.c | |
parent | 41d88b63af2cdca1570f463698afc3a8b2335092 (diff) | |
download | perl-6d4a66ac96a9ddca3710bd969e6b1e2a80a8193d.tar.gz |
Silence another Irix compiler warning.
p4raw-id: //depot/perl@27006
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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" }, |