From: Rusty Russell Date: Tue, 4 May 2010 07:36:40 +0000 (+0930) Subject: tdb: fix backwards check on HAVE_PAGESIZE X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=6dbbd0b7fd9c79c14d9c8a985373dcccbba218c4;ds=sidebyside tdb: fix backwards check on HAVE_PAGESIZE --- diff --git a/ccan/tdb/tdb_private.h b/ccan/tdb/tdb_private.h index 1195c3b5..228e8dcf 100644 --- a/ccan/tdb/tdb_private.h +++ b/ccan/tdb/tdb_private.h @@ -64,7 +64,7 @@ #define __location__ __FILE__ ":" __STRINGSTRING(__LINE__) #endif -#if HAVE_GETPAGESIZE +#if !HAVE_GETPAGESIZE #define getpagesize() 0x2000 #endif