Bug 741333 - Remove PRBool/PR_TRUE/PR_FALSE that crept in r=Ms2ger

This commit is contained in:
Veeraya Pupatwibul
2012-04-04 11:15:10 +02:00
parent 8ad1cd3d6d
commit 054cc031c2
27 changed files with 56 additions and 56 deletions

View File

@@ -55,7 +55,7 @@ extern PRLogModuleInfo *gUrlClassifierDbServiceLog;
#define LOG_ENABLED() PR_LOG_TEST(gUrlClassifierDbServiceLog, 4)
#else
#define LOG(args)
#define LOG_ENABLED() (PR_FALSE)
#define LOG_ENABLED() (false)
#endif
namespace mozilla {
@@ -186,7 +186,7 @@ ProtocolParser::FinishHMAC()
}
nsCAutoString clientMAC;
mHMAC->Finish(PR_TRUE, clientMAC);
mHMAC->Finish(true, clientMAC);
if (clientMAC != mServerMAC) {
NS_WARNING("Invalid update MAC!");