From 61c95ed7fb9fd8171f2cbd94fc35db28c15d90b7 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Thu, 12 Feb 2015 00:37:52 -0800 Subject: [PATCH] Util: Fix warnings on FreeBSD --- src/util/formatting.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/formatting.h b/src/util/formatting.h index 1ea621dc0..df35beeae 100644 --- a/src/util/formatting.h +++ b/src/util/formatting.h @@ -10,7 +10,7 @@ #include "locale.h" -#ifdef __APPLE__ +#if defined(__APPLE__) || defined(__FreeBSD__) #include "xlocale.h" #endif