Fix P_INVALID signedness

This commit is contained in:
Hallvard B Furuseth 2011-06-29 20:09:31 +02:00
parent f42f7f3442
commit bd2ceeb74e

View file

@ -42,7 +42,7 @@
#define MDB_VERSION 1
#define MAXKEYSIZE 255
#define P_INVALID (~0L)
#define P_INVALID (~0UL)
#define F_ISSET(w, f) (((w) & (f)) == (f))