mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
Bug 690432: Fix "format not a string literal and no format arguments" error in gfx logging code. r=bas
This commit is contained in:
parent
43816a48bf
commit
016428a270
@ -87,7 +87,7 @@ static void OutputMessage(const std::string &aString, int aLevel) {
|
||||
}
|
||||
#else
|
||||
if (aLevel >= sGfxLogLevel) {
|
||||
printf(aString.c_str());
|
||||
printf("%s", aString.c_str());
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user