Skip to content
Snippets Groups Projects
Commit 95ac353a authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix unused variable warning

parent 528c902a
No related branches found
No related tags found
No related merge requests found
...@@ -916,6 +916,7 @@ void LLProcess::status_callback(int reason, void* data, int status) ...@@ -916,6 +916,7 @@ void LLProcess::status_callback(int reason, void* data, int status)
static_cast<LLProcess*>(data)->handle_status(reason, status); static_cast<LLProcess*>(data)->handle_status(reason, status);
} }
#ifdef SHOW_DEBUG
#define tabent(symbol) { symbol, #symbol } #define tabent(symbol) { symbol, #symbol }
static struct ReasonCode static struct ReasonCode
{ {
...@@ -931,11 +932,12 @@ static struct ReasonCode ...@@ -931,11 +932,12 @@ static struct ReasonCode
tabent(APR_OC_REASON_RUNNING) tabent(APR_OC_REASON_RUNNING)
}; };
#undef tabent #undef tabent
#endif
// Object-oriented callback // Object-oriented callback
void LLProcess::handle_status(int reason, int status) void LLProcess::handle_status(int reason, int status)
{ {
#if SHOW_DEBUG #ifdef SHOW_DEBUG
{ {
// This odd appearance of LL_DEBUGS is just to bracket a lookup that will // This odd appearance of LL_DEBUGS is just to bracket a lookup that will
// only be performed if in fact we're going to produce the log message. // only be performed if in fact we're going to produce the log message.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment