aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/srv.cpp
diff options
context:
space:
mode:
authorGravatar bunnei <ericbunnie@gmail.com>2014-04-16 21:22:15 -0400
committerGravatar bunnei <ericbunnie@gmail.com>2014-04-16 21:22:15 -0400
commit9d1a17ca88ee05cacb6e0f87d9a80b50d3acf69b (patch)
treef691b51c5e9c033c46d0476f945a445cf8ae99fb /src/core/hle/service/srv.cpp
parent795d6bf5b7cd822f70213a9024c67efedde8d6a1 (diff)
fixed bug with printing std::string in log messages
Diffstat (limited to 'src/core/hle/service/srv.cpp')
-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 1ec78dd1..579ea4a3 100644
--- a/src/core/hle/service/srv.cpp
+++ b/src/core/hle/service/srv.cpp
@@ -23,13 +23,13 @@ void GetServiceHandle() {
std::string port_name = std::string((const char*)&cmd_buff[1], 0, Service::kMaxPortSize);
Service::Interface* service = Service::g_manager->FetchFromPortName(port_name);
- NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name,
+ NOTICE_LOG(OSHLE, "SRV::Sync - GetHandle - port: %s, handle: 0x%08X", port_name.c_str(),
service->GetUID());
if (NULL != service) {
cmd_buff[3] = service->GetUID();
} else {
- ERROR_LOG(OSHLE, "Service %s does not exist", port_name);
+ ERROR_LOG(OSHLE, "Service %s does not exist", port_name.c_str());
res = -1;
}
cmd_buff[1] = res;