Silence -Wformat warnings in debug builds.

This commit is contained in:
Rohit Nirmal 2015-04-26 13:45:06 -05:00
parent 392b9abece
commit fb46afd5c3
1 changed files with 2 additions and 2 deletions

View File

@ -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],