summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-02-14 06:49:35 +0100
committerLioncash <mathew1800@gmail.com>2018-02-14 07:52:55 +0100
commitee170cbcead1aa19ca88a4884f2df13324874adf (patch)
treeadfd905d46573e7c14989722495b9bf4afd98479 /src/core/hle
parentnvhost_gpu: Silence formatting specifier warnings (diff)
downloadyuzu-ee170cbcead1aa19ca88a4884f2df13324874adf.tar
yuzu-ee170cbcead1aa19ca88a4884f2df13324874adf.tar.gz
yuzu-ee170cbcead1aa19ca88a4884f2df13324874adf.tar.bz2
yuzu-ee170cbcead1aa19ca88a4884f2df13324874adf.tar.lz
yuzu-ee170cbcead1aa19ca88a4884f2df13324874adf.tar.xz
yuzu-ee170cbcead1aa19ca88a4884f2df13324874adf.tar.zst
yuzu-ee170cbcead1aa19ca88a4884f2df13324874adf.zip
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvmap.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvmap.cpp b/src/core/hle/service/nvdrv/devices/nvmap.cpp
index 02b33374a..cd8c0c605 100644
--- a/src/core/hle/service/nvdrv/devices/nvmap.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvmap.cpp
@@ -3,6 +3,7 @@
// Refer to the license.txt file included.
#include <algorithm>
+#include <cinttypes>
#include "common/assert.h"
#include "common/logging/log.h"
@@ -71,7 +72,7 @@ u32 nvmap::IocAlloc(const std::vector<u8>& input, std::vector<u8>& output) {
object->addr = params.addr;
object->status = Object::Status::Allocated;
- LOG_DEBUG(Service_NVDRV, "called, addr=0x%llx", params.addr);
+ LOG_DEBUG(Service_NVDRV, "called, addr=0x%" PRIx64, params.addr);
std::memcpy(output.data(), &params, sizeof(params));
return 0;