From: Nicholas Clark Date: Mon, 30 Jan 2006 16:50:38 +0000 (+0000) Subject: Silence another Irix compiler warning. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=6d4a66ac96a9ddca3710bd969e6b1e2a80a8193d;p=p5sagit%2Fp5-mst-13.2.git Silence another Irix compiler warning. p4raw-id: //depot/perl@27006 --- diff --git a/toke.c b/toke.c index 8f90366..5586d08 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" },