diff options
author | D G Turner | 2017-01-17 11:00:18 +0000 |
---|---|---|
committer | D G Turner | 2017-01-17 11:00:18 +0000 |
commit | a8d975f03273e931e57efe5b7d51751a238b6886 (patch) | |
tree | 040e81ac307a526878ebae9ccc6033c38bd5b8c3 | |
parent | 4236d93aae16bd5e5cf63256fd7617961da49204 (diff) | |
download | scummvm-rg350-a8d975f03273e931e57efe5b7d51751a238b6886.tar.gz scummvm-rg350-a8d975f03273e931e57efe5b7d51751a238b6886.tar.bz2 scummvm-rg350-a8d975f03273e931e57efe5b7d51751a238b6886.zip |
GRAPHICS: Fix Zero Length Format String Compiler Warnings.
-rw-r--r-- | graphics/fonts/macfont.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/fonts/macfont.cpp b/graphics/fonts/macfont.cpp index 1b094c2442..d3638fc749 100644 --- a/graphics/fonts/macfont.cpp +++ b/graphics/fonts/macfont.cpp @@ -132,7 +132,7 @@ bool MacFont::loadFOND(Common::SeekableReadStream &stream) { _ffProperty[i] = stream.readUint16BE(); debugN(10, "%d ", _ffProperty[i]); } - debug(10, ""); + debug(10, "%s", ""); _ffIntl[0] = stream.readUint16BE(); // for international use _ffIntl[1] = stream.readUint16BE(); // for international use @@ -162,7 +162,7 @@ bool MacFont::loadFOND(Common::SeekableReadStream &stream) { _ffOffsets[i] = stream.readUint32BE(); debugN(10, "%d ", _ffOffsets[i]); } - debug(10, ""); + debug(10, "%s", ""); _ffNumBBoxes = stream.readUint16BE(); // number of entries - 1 _ffBBoxes.resize(_ffNumBBoxes + 1); |