diff options
author | Omar Polo <op@omarpolo.com> | 2021-07-09 12:56:59 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2021-07-09 12:56:59 +0000 |
commit | 1bd706dc4150dbcb42d48b98854e46a78ceda861 (patch) | |
tree | 0a16e3434c195255a5c56ad088a789fd8c154dab /parse.y | |
parent | 528f37cd2dbed6a7906e3adb96c12f44acba919d (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.y | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |