summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@users.noreply.github.com>2019-10-15 14:07:35 -0400
committerGitHub <noreply@github.com>2019-10-15 14:07:35 -0400
commit8635868582c34f5451b1264c1d5452cfe3c48ccf (patch)
treea93e1c759f90b2165019e805bc5a4456963cc141
parentc3ea8e0272b470e7704e59244c3ef9bc3a0ac7ef (diff)
Fix cygwin define check
-rw-r--r--tools/br_ips/br_ips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/br_ips/br_ips.c b/tools/br_ips/br_ips.c
index 9400ae1f8..d144c5f39 100644
--- a/tools/br_ips/br_ips.c
+++ b/tools/br_ips/br_ips.c
@@ -19,7 +19,7 @@ static const char HELP[] = "br_ips\n"
"Options:\n"
" -h - show this message and exit\n";
-#if !defined(__CYGWIN32__) && !defined(__APPLE__) && (_POSIX_C_SOURCE < 200809L || !_GNU_SOURCE)
+#if !defined(__CYGWIN__) && !defined(__APPLE__) && (_POSIX_C_SOURCE < 200809L || !_GNU_SOURCE)
static int getline(char ** lineptr, size_t * n, FILE * stream) {
// Static implementation of GNU getline
int i = 0;