summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorRohit Nirmal <rohitnirmal9@gmail.com>2015-04-26 13:45:06 -0500
committerRohit Nirmal <rohitnirmal9@gmail.com>2015-04-26 13:45:06 -0500
commitfb46afd5c3bbd98fbfe2cee5b991d6fe65f4ef26 (patch)
tree78ef4f43f797f5a0d686bbe03fb0a5f0581201db /Source/Core
parent392b9abecea76f8ba34e75afe70e758b15c778e5 (diff)
Silence -Wformat warnings in debug builds.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/HW/SI_DeviceGBA.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/HW/SI_DeviceGBA.cpp b/Source/Core/Core/HW/SI_DeviceGBA.cpp
index c9c7d92ce0..de471312aa 100644
--- a/Source/Core/Core/HW/SI_DeviceGBA.cpp
+++ b/Source/Core/Core/HW/SI_DeviceGBA.cpp
@@ -301,7 +301,7 @@ int GBASockServer::Receive(u8* si_buffer)
#ifdef _DEBUG
if ((u8)send_data[0] == 0x00 || (u8)send_data[0] == 0xff)
{
- WARN_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%d)",
+ WARN_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%lu)",
device_number,
(u8)recv_data[0], (u8)recv_data[1], (u8)recv_data[2],
(u8)recv_data[3], (u8)recv_data[4],
@@ -309,7 +309,7 @@ int GBASockServer::Receive(u8* si_buffer)
}
else
{
- ERROR_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%d)",
+ ERROR_LOG(SERIALINTERFACE, "%01d [< %02x%02x%02x%02x%02x] (%lu)",
device_number,
(u8)recv_data[0], (u8)recv_data[1], (u8)recv_data[2],
(u8)recv_data[3], (u8)recv_data[4],