From b473661cf44333a5831174ca7dfa9edc412e7cb1 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Mon, 23 Sep 2013 18:38:48 -0500 Subject: [PATCH] ilu gcc (fix preprocessor macro typo that VS thought was dandy for some reason.) --- indra/newview/lltexturefetch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index b4eb65594..96f366fca 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -1452,7 +1452,7 @@ bool LLTextureFetchWorker::doWork(S32 param) S32 max_attempts; switch(mGetStatus) { -#define HTTP_CASE(name) case name: LL_DEBUGS("TexDebug") << mID << " status = " << mGetStatus << " (" << ##name << ")" << " Failcount = " << mHTTPFailCount << llendl; break; +#define HTTP_CASE(name) case name: LL_DEBUGS("TexDebug") << mID << " status = " << mGetStatus << " (" << #name << ")" << " Failcount = " << mHTTPFailCount << llendl; break; HTTP_CASE(HTTP_CONTINUE) HTTP_CASE(HTTP_SWITCHING_PROTOCOLS) HTTP_CASE(HTTP_OK)