From cedf1517e04fed3b01b999879f9179ff86159867 Mon Sep 17 00:00:00 2001 From: Adrian Serrano Date: Fri, 2 Nov 2018 11:43:41 +0100 Subject: [PATCH] Fix build under macOS --- ipfix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ipfix.c b/ipfix.c index a893580..60b947e 100644 --- a/ipfix.c +++ b/ipfix.c @@ -28,7 +28,7 @@ #include "treetype.h" #include "softflowd.h" -#if defined (HAVE_DECL_HTONLL) && !defined (HAVE_DECL_HTOBE64) +#if HAVE_DECL_HTONLL && !HAVE_DECL_HTOBE64 #define htobe64 htonll #endif #define JAN_1970 2208988800UL /* 1970 - 1900 in seconds */