diff options
author | 2015-11-19 23:34:56 +0000 | |
---|---|---|
committer | 2015-11-19 23:34:56 +0000 | |
commit | 73902435dc16cda5db0093b6f7e6ffc089ff0489 (patch) | |
tree | b8994c6779b761742bd45feb05f12da14e33946a /usr.bin/lex/main.c | |
parent | it is not necessary to cast the result of malloc/calloc. (diff) | |
download | wireguard-openbsd-73902435dc16cda5db0093b6f7e6ffc089ff0489.tar.xz wireguard-openbsd-73902435dc16cda5db0093b6f7e6ffc089ff0489.zip |
Replace Char (defined as unsigned char) with u_char.
ok tedu@
Diffstat (limited to 'usr.bin/lex/main.c')
-rw-r--r-- | usr.bin/lex/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/lex/main.c b/usr.bin/lex/main.c index 61ef8ed5ee1..5acbff63dcb 100644 --- a/usr.bin/lex/main.c +++ b/usr.bin/lex/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.20 2015/11/19 23:20:34 tedu Exp $ */ +/* $OpenBSD: main.c,v 1.21 2015/11/19 23:34:56 mmcc Exp $ */ /* flex - tool to generate fast lexical analyzers */ @@ -93,7 +93,7 @@ int *accsiz, *dhash, numas; int numsnpairs, jambase, jamstate; int lastccl, *cclmap, *ccllen, *cclng, cclreuse; int current_maxccls, current_max_ccl_tbl_size; -Char *ccltbl; +u_char *ccltbl; char nmstr[MAXLINE]; int sectnum, nummt, hshcol, dfaeql, numeps, eps2, num_reallocs; int tmpuses, totnst, peakpairs, numuniq, numdup, hshsave; |