From a8d975f03273e931e57efe5b7d51751a238b6886 Mon Sep 17 00:00:00 2001 From: D G Turner Date: Tue, 17 Jan 2017 11:00:18 +0000 Subject: GRAPHICS: Fix Zero Length Format String Compiler Warnings. --- graphics/fonts/macfont.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'graphics/fonts') 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); -- cgit v1.2.3