From 60292fb70fc740e5a5f417ba9a8d5bacef4b6d04 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sun, 11 May 2003 17:48:01 +0000 Subject: [PATCH] fixed ambiguos call Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1006 --- src/hardware/iohandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hardware/iohandler.cpp b/src/hardware/iohandler.cpp index 4dcf0c78..628a7361 100644 --- a/src/hardware/iohandler.cpp +++ b/src/hardware/iohandler.cpp @@ -48,7 +48,7 @@ static Bit8u IO_ReadDefault(Bit32u port) { } void IO_WriteDefault(Bit32u port,Bit8u val) { - LOG(LOG_IO,LOG_ERROR)("Writing %02X to undefined port %04X",val,port); + LOG(LOG_IO,LOG_ERROR)("Writing %02X to undefined port %04X",static_cast(val),port); IO_RegisterWriteHandler(port,&IO_WriteBlocked,"Blocked Write"); }