Bug 1068613 - Addendum 4: Fix bustage due to stray character. r=bustage on a CLOSED TREE

This commit is contained in:
Bas Schouten 2014-09-18 01:40:13 +02:00
parent 086cbf0103
commit 7a91965ba7

View File

@ -154,11 +154,11 @@ public:
if (!NS_IsMainThread()) {
return;
}
nsCString reportString(aString.c_str());
#ifdef MOZ_CRASHREPORTER
nsCString reportString(aString.c_str());
CrashReporter::AppendAppNotesToCrashReport(reportString);
#else
printf("GFX ERROR: %s", reportString);
printf("GFX ERROR: %s", aString.c_str());
#endif
}
};