aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/pic
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-12-27 19:13:31 +0000
committerrsc <devnull@localhost>2004-12-27 19:13:31 +0000
commit73bfbacb2409b10f45fd080891a95de29cafe4a0 (patch)
tree369abfaa0c088e1df6d7c63688b8d29d76bbf1d5 /src/cmd/pic
parentb3efcdbf5950a4b5bd43a83d3c7afe984e3238d7 (diff)
downloadplan9port-73bfbacb2409b10f45fd080891a95de29cafe4a0.tar.gz
plan9port-73bfbacb2409b10f45fd080891a95de29cafe4a0.tar.bz2
plan9port-73bfbacb2409b10f45fd080891a95de29cafe4a0.zip
silence various warnings
Diffstat (limited to 'src/cmd/pic')
-rw-r--r--src/cmd/pic/picl.lx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/pic/picl.lx b/src/cmd/pic/picl.lx
index f5a9c155..da29d246 100644
--- a/src/cmd/pic/picl.lx
+++ b/src/cmd/pic/picl.lx
@@ -29,7 +29,7 @@ int yylook(void);
int yywrap(void);
#define CADD cbuf[clen++]=yytext[0]; \
- if (clen>=CBUFLEN-1) { ERROR "string too long", cbuf WARNING; BEGIN A; }
+ if (clen>=CBUFLEN-1) { ERROR "string too long" WARNING; BEGIN A; }
#define CBUFLEN 500
char cbuf[CBUFLEN];
int c, clen, cflag, delim;