Pull down change from 3.0.1rc7:
- Fix a bug in is_identifier(), where it was checking against EOF instead of the END_OF_FILE token. This is required to eliminate a warning with -fshort-enums.
This commit is contained in:
parent
24460e83d2
commit
a4f14f6e11
2
dist/dhcp/includes/dhctoken.h
vendored
2
dist/dhcp/includes/dhctoken.h
vendored
@ -321,4 +321,4 @@ enum dhcp_token {
|
||||
#define is_identifier(x) ((x) >= FIRST_TOKEN && \
|
||||
(x) != STRING && \
|
||||
(x) != NUMBER && \
|
||||
(x) != EOF)
|
||||
(x) != END_OF_FILE)
|
||||
|
Loading…
Reference in New Issue
Block a user