aboutsummaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-07-09 12:56:59 +0000
committerOmar Polo <op@omarpolo.com>2021-07-09 12:56:59 +0000
commit1bd706dc4150dbcb42d48b98854e46a78ceda861 (patch)
tree0a16e3434c195255a5c56ad088a789fd8c154dab /parse.y
parent528f37cd2dbed6a7906e3adb96c12f44acba919d (diff)
drop unsigned
it causes a cascade of warnings on some architectures. Also, for what we're doing here, the signed/unsigned property isn't important.
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y8
1 files changed, 4 insertions, 4 deletions
diff --git a/parse.y b/parse.y
index a43eeac..7a8434a 100644
--- a/parse.y
+++ b/parse.y
@@ -545,10 +545,10 @@ findeol(void)
int
yylex(void)
{
- unsigned char buf[8096];
- unsigned char *p, *val;
- int quotec, next, c;
- int token;
+ char buf[8096];
+ char *p, *val;
+ int quotec, next, c;
+ int token;
top:
p = buf;