fix compiler warning; -1 is not comparable to entry->type
This commit is contained in:
parent
f3d06543e5
commit
c30aaa3a1a
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ terms specified in this license.
|
||||||
|
|
||||||
/** Operation types */
|
/** Operation types */
|
||||||
|
|
||||||
#define OPERATION_INVALID (-1)
|
#define OPERATION_INVALID (UCHAR_MAX)
|
||||||
|
|
||||||
#define OPERATION_SET 0
|
#define OPERATION_SET 0
|
||||||
#define OPERATION_SET_INVERSE 1
|
#define OPERATION_SET_INVERSE 1
|
||||||
|
|
Loading…
Reference in a new issue