aboutsummaryrefslogtreecommitdiff
path: root/client
diff options
context:
space:
mode:
authorsghctoma <sghctoma@gmail.com>2018-08-30 09:29:05 +0200
committersghctoma <sghctoma@gmail.com>2018-08-30 09:34:26 +0200
commitcc16948c8598e8b9aa98506dcdad66967dc28712 (patch)
treee06909895e67689e68ea4b76e14413dd9c291d29 /client
parentde9e80459a93598bdaf6a68485215ce597131d88 (diff)
Fix feature macros for FreeBSD
On FreeBSD, snprintf and vsnprintf are visible only if _XOPEN_SOURCE >= 600.
Diffstat (limited to 'client')
-rw-r--r--client/pool-buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/pool-buffer.c b/client/pool-buffer.c
index fa468c0d..6555a3ae 100644
--- a/client/pool-buffer.c
+++ b/client/pool-buffer.c
@@ -1,4 +1,4 @@
-#define _XOPEN_SOURCE 500
+#define _XOPEN_SOURCE 600
#include <assert.h>
#include <cairo/cairo.h>
#include <fcntl.h>