Commit edab6608 authored by Tom Ritter's avatar Tom Ritter Committed by Georg Koppen
Browse files

Bug 1368406 Use non-Windows Printf Format Specifiers in MinGW r=froydnj

MinGW applies the gnu_printf format attribute, which expects
non-Windows format specifiers. These macros were not designed
to handle MinGW.

MozReview-Commit-ID: HuJrK43Bg1A

--HG--
extra : rebase_source : 6ccc1b2f4ab0e71584f442e86d94322e2c6382fb
parent 257d339f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
 * http://msdn.microsoft.com/en-us/library/tcxf1dw6.aspx
 */

#if defined(XP_WIN)
#if defined(XP_WIN) && !defined(__MINGW32__)
#  define PRIoSIZE  "Io"
#  define PRIuSIZE  "Iu"
#  define PRIxSIZE  "Ix"