summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-16 21:22:15 -0400
committerGravatar bunnei2014-04-16 21:22:15 -0400
commit9d1a17ca88ee05cacb6e0f87d9a80b50d3acf69b (patch)
treef691b51c5e9c033c46d0476f945a445cf8ae99fb
parentchanged unknown memory read/write to report the size (diff)
downloadyuzu-9d1a17ca88ee05cacb6e0f87d9a80b50d3acf69b.tar.gz
yuzu-9d1a17ca88ee05cacb6e0f87d9a80b50d3acf69b.tar.xz
yuzu-9d1a17ca88ee05cacb6e0f87d9a80b50d3acf69b.zip
fixed bug with printing std::string in log messages
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/srv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/srv.cpp b/src/core/hle/service/srv.cpp
index 1ec78dd15..579ea4a34 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -23,13 +23,13 @@ void GetServiceHandle() {
23 std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize); 23 std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
24 Service::Interface* service = Service::g_manager->FetchFromPortName(port_name); 24 Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
25 25
26 NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name, 26 NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(),
27 service->GetUID()); 27 service->GetUID());
28 28
29 if (NULL != service) { 29 if (NULL != service) {
30 cmd_buff[3] = service->GetUID(); 30 cmd_buff[3] = service->GetUID();
31 } else { 31 } else {
32 ERROR_LOG(OSHLE, "Service %s does not exist", port_name); 32 ERROR_LOG(OSHLE, "Service %s does not exist", port_name.c_str());
33 res = -1; 33 res = -1;
34 } 34 }
35 cmd_buff[1] = res; 35 cmd_buff[1] = res;