From 2986a15531a45d76ac2b68ce99496aa759844eae Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Thu, 11 Apr 2019 15:46:07 +0200 Subject: [PATCH] windows build fix --- src/common/conf_post.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/conf_post.h b/src/common/conf_post.h index e5315418..1b55c826 100644 --- a/src/common/conf_post.h +++ b/src/common/conf_post.h @@ -25,8 +25,9 @@ typedef int mode_t; #endif // GMinw only typedef int pid_t; -inline int readlink(const char *, void *, int) +inline int readlink(const char *a, void *b, int c) { + a = a; b = b; c = c; return -1; }