summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2023-07-12 19:02:48 +0800
committerErik Kundiman <erik@megapahit.org>2023-07-19 14:57:17 +0800
commit0f9aee9e992c34dccdb012a554a013d94437ebc5 (patch)
treefeccb16aef57a16b577f0f2a8342f1f9afced33d /indra/llcommon
parent59eb9cc368b359c069f1ddb187ea23aff4808d1c (diff)
Undefine Status on FreeBSD too
Otherwise we'd get this. error: declaration of anonymous struct must be a definition struct Status ^ indra/llcommon/llprocess.h:284:2: warning: declaration does not declare anything [-Wmissing-declarations]
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llprocess.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llprocess.h b/indra/llcommon/llprocess.h
index e3386ad88e..9555df9bba 100644
--- a/indra/llcommon/llprocess.h
+++ b/indra/llcommon/llprocess.h
@@ -40,7 +40,7 @@
#if LL_WINDOWS
#include "llwin32headerslean.h" // for HANDLE
-#elif LL_LINUX
+#elif LL_LINUX || LL_FREEBSD
#if defined(Status)
#undef Status
#endif