firefox-esr68/firefox-7.0-fix-str-fmt.patch
2012-09-04 11:53:20 -04:00

11 lines
262 B
Diff

--- gfx/2d/Logging.h.str 2011-09-27 03:53:32.000000000 +0200
+++ gfx/2d/Logging.h 2011-09-27 03:53:43.000000000 +0200
@@ -87,7 +87,7 @@
}
#else
if (aLevel >= sGfxLogLevel) {
- printf(aString.c_str());
+ printf("%s",aString.c_str());
}
#endif
}