fix compiler warning; -1 is not comparable to entry->type

This commit is contained in:
Sears Russell 2010-01-07 21:50:17 +00:00
parent f3d06543e5
commit c30aaa3a1a

View file

@ -114,7 +114,7 @@ terms specified in this license.
/** Operation types */
#define OPERATION_INVALID (-1)
#define OPERATION_INVALID (UCHAR_MAX)
#define OPERATION_SET 0
#define OPERATION_SET_INVERSE 1