From d9a9fac93761a06e78fe7e7091ae5a888c1260f2 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 8 Mar 2006 11:37:25 +0000 Subject: Fixed tons of format string warnings for debug/error calls (including several errors where the format string didn't match the number of arguments to the call) svn-id: r21141 --- engines/gob/dataio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/gob/dataio.cpp') diff --git a/engines/gob/dataio.cpp b/engines/gob/dataio.cpp index c685e88bec..b862302492 100644 --- a/engines/gob/dataio.cpp +++ b/engines/gob/dataio.cpp @@ -114,7 +114,7 @@ int32 DataIO::readChunk(int16 handle, char *buf, int16 size) { offset = _vm->_global->_chunkOffset[file * MAX_SLOT_COUNT + slot] + _vm->_global->_chunkPos[file * MAX_SLOT_COUNT + slot]; - debugC(7, DEBUG_FILEIO, "seek: %ld, %ld", _vm->_global->_chunkOffset[file * MAX_SLOT_COUNT + slot], _vm->_global->_chunkPos[file * MAX_SLOT_COUNT + slot]); + debugC(7, DEBUG_FILEIO, "seek: %d, %d", _vm->_global->_chunkOffset[file * MAX_SLOT_COUNT + slot], _vm->_global->_chunkPos[file * MAX_SLOT_COUNT + slot]); file_getHandle(_vm->_global->_dataFileHandles[file])->seek(offset, SEEK_SET); } -- cgit v1.2.3