From fa5fd45dc36687bb3617a954caa6fe4cc770268c Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 24 Sep 2018 07:25:55 +0200 Subject: [PATCH] file: fix CPP syntax error Fixes: 77b774b ("build: avoid redefining _DEFAULT_SOURCE") Signed-off-by: Jo-Philipp Wich --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file.c b/file.c index b73fd47..da680a0 100644 --- a/file.c +++ b/file.c @@ -19,7 +19,7 @@ #ifndef _DEFAULT_SOURCE # define _DEFAULT_SOURCE -#define +#endif #define _BSD_SOURCE #define _DARWIN_C_SOURCE -- 2.30.2