mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07: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
c3bff5e977
commit
4f70e5207f
@ -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