diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llcommon/llapr.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linden/indra/llcommon/llapr.cpp b/linden/indra/llcommon/llapr.cpp index 770cd3f..08c40a4 100644 --- a/linden/indra/llcommon/llapr.cpp +++ b/linden/indra/llcommon/llapr.cpp | |||
@@ -116,8 +116,10 @@ void LLScopedLock::unlock() | |||
116 | bool ll_apr_warn_status(apr_status_t status) | 116 | bool ll_apr_warn_status(apr_status_t status) |
117 | { | 117 | { |
118 | if(APR_SUCCESS == status) return false; | 118 | if(APR_SUCCESS == status) return false; |
119 | #ifndef LL_WINDOWS | ||
119 | char buf[MAX_STRING]; /* Flawfinder: ignore */ | 120 | char buf[MAX_STRING]; /* Flawfinder: ignore */ |
120 | llwarns << "APR: " << apr_strerror(status, buf, MAX_STRING) << llendl; | 121 | llwarns << "APR: " << apr_strerror(status, buf, MAX_STRING) << llendl; |
122 | #endif | ||
121 | return true; | 123 | return true; |
122 | } | 124 | } |
123 | 125 | ||