From 402878ae119a0056304beaa025a10281ab4bfe03 Mon Sep 17 00:00:00 2001 From: mb300sd Date: Fri, 23 Jan 2015 17:09:50 -0500 Subject: [PATCH] fix ifdef/ifndef --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index c3a8f3a..91e4227 100644 --- a/src/util.h +++ b/src/util.h @@ -27,7 +27,7 @@ } while(0) #endif -#ifndef HAVE_BUILTIN_EXPECT +#ifdef HAVE_BUILTIN_EXPECT #define EXPECT(x,c) __builtin_expect((x),(c)) #else #define EXPECT(x,c) (x)