diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-05-27 14:43:16 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-05-27 14:43:16 +0800 |
commit | 8be1586159f511882f477ac7f50a8d15b6aacc63 (patch) | |
tree | d98ed7060d750d121d171de66b42acf832dd41ef /indra/llcommon | |
parent | 7ecde89008f9ed39c357b606d3bc231ba4360ee2 (diff) |
Exempt logging that prints build-time path on FBSD
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llapr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llapr.cpp b/indra/llcommon/llapr.cpp index 01763c49aa..04aba817f8 100644 --- a/indra/llcommon/llapr.cpp +++ b/indra/llcommon/llapr.cpp @@ -230,7 +230,7 @@ bool LLVolatileAPRPool::isFull() bool _ll_apr_warn_status(apr_status_t status, const char* file, int line) { if(APR_SUCCESS == status) return false; -#if !LL_LINUX +#if !LL_LINUX && !__FreeBSD__ char buf[MAX_STRING]; /* Flawfinder: ignore */ apr_strerror(status, buf, sizeof(buf)); LL_WARNS("APR") << "APR: " << file << ":" << line << " " << buf << LL_ENDL; |