diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-07-12 19:02:48 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-07-19 14:57:17 +0800 |
commit | 0f9aee9e992c34dccdb012a554a013d94437ebc5 (patch) | |
tree | feccb16aef57a16b577f0f2a8342f1f9afced33d /indra/llcommon/llprocess.h | |
parent | 59eb9cc368b359c069f1ddb187ea23aff4808d1c (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/llprocess.h')
-rw-r--r-- | indra/llcommon/llprocess.h | 2 |
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 |