Fixed formatting and switch statement warnings

This commit is contained in:
vaguilar
2014-11-27 02:35:27 -08:00
parent 2a4b698f8e
commit 223e76d51d
7 changed files with 13 additions and 11 deletions

View File

@ -68,7 +68,7 @@ inline void Write(u32 addr, const T data) {
break;
default:
ERROR_LOG(HW, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, data, addr);
ERROR_LOG(HW, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, (u32)data, addr);
}
}