aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hw/ndma.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hw/ndma.cpp')
-rw-r--r--src/core/hw/ndma.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hw/ndma.cpp b/src/core/hw/ndma.cpp
index e29a773f..593e5de3 100644
--- a/src/core/hw/ndma.cpp
+++ b/src/core/hw/ndma.cpp
@@ -15,7 +15,7 @@ inline void Read(T &var, const u32 addr) {
template <typename T>
inline void Write(u32 addr, const T data) {
- ERROR_LOG(NDMA, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, data, addr);
+ ERROR_LOG(NDMA, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, (u32)data, addr);
}
// Explicitly instantiate template functions because we aren't defining this in the header: