Bug 925705 - Fix mismatched logging define check. r=honzab

This commit is contained in:
Gian-Carlo Pascutto 2013-10-14 16:50:49 +02:00
parent 7619fc7c25
commit d0a14f7383
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ CacheEntry::~CacheEntry()
MOZ_COUNT_DTOR(CacheEntry);
}
#ifdef MOZ_LOGGING
#ifdef PR_LOG
char const * CacheEntry::StateString(uint32_t aState)
{

View File

@ -242,7 +242,7 @@ private:
// fails to open an output stream.
bool mHasData : 1;
#ifdef MOZ_LOGGING
#ifdef PR_LOG
static char const * StateString(uint32_t aState);
#endif