Module Name: src Committed By: rillig Date: Thu Jan 14 07:34:48 UTC 2021
Modified Files: src/usr.bin/xlint/lint1: scan.l Log Message: lint: fix enum type in the lexical analysis part Detected by Clang, reported by riastradh: > scan.l:144:29: error: implicit conversion from enumeration type > 'tspec_t' to different enumeration type 'op_t' > return operator(T_ASTERISK, NOTSPEC); > ~~~~~~~~ ^~~~~~~ and by lint as well, with a less detailed and less helpful message: > scan.l(144): warning: enum type mismatch, arg #2 [156] Since scan.c is generated from scan.l, it is not included in the default "make lint" though. The value of these two constants is the same, furthermore that value is never actually used in the code, therefore no functional change. To generate a diff of this commit: cvs rdiff -u -r1.116 -r1.117 src/usr.bin/xlint/lint1/scan.l Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.