mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-15 03:00:30 +00:00
Fixing build bustage. need to #ifdef PR_LOGGING mSpec.
This commit is contained in:
parent
f90dd072fc
commit
b36e63d300
@ -902,7 +902,9 @@ nsFileTransport::Process(void)
|
||||
if (mProgress) {
|
||||
// XXX fix up this message for i18n
|
||||
nsAutoString msg = "Read ";
|
||||
#ifdef PR_LOGGING
|
||||
msg += (const char*)mSpec;
|
||||
#endif
|
||||
(void)mProgress->OnStatus(this, mContext, msg.mUStr);
|
||||
}
|
||||
mContext = null_nsCOMPtr();
|
||||
@ -1040,7 +1042,9 @@ nsFileTransport::Process(void)
|
||||
if (mProgress) {
|
||||
// XXX fix up this message for i18n
|
||||
nsAutoString msg = "Wrote ";
|
||||
#ifdef PR_LOGGING
|
||||
msg += (const char*)mSpec;
|
||||
#endif
|
||||
(void)mProgress->OnStatus(this, mContext, msg.mUStr);
|
||||
}
|
||||
mContext = null_nsCOMPtr();
|
||||
|
Loading…
Reference in New Issue
Block a user