From cde69caf63e2b24bfa7d7c45d36c5ade4b6a0bcc Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Sat, 22 Jan 2005 14:10:14 +0000 Subject: Fixed warning. svn-id: r16613 --- saga/sdebug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'saga') diff --git a/saga/sdebug.cpp b/saga/sdebug.cpp index 145597b920..ebc378ea7c 100644 --- a/saga/sdebug.cpp +++ b/saga/sdebug.cpp @@ -70,7 +70,7 @@ int Script::SDebugPrintInstr(ScriptThread *thread) { thread->_moduleBaseSize - thread->_instructionOffset); in_char = readS.readByte(); - sprintf(tmp_buf, "%04lX | %02X | ", thread->_instructionOffset, in_char); + sprintf(tmp_buf, "%04X | %02X | ", thread->_instructionOffset, in_char); strncat(disp_buf, tmp_buf, SD_DISPLAY_LEN); switch (in_char) { -- cgit v1.2.3