summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-03-10 23:00:54 +0100
committerLioncash <mathew1800@gmail.com>2019-03-10 23:00:57 +0100
commit8603f0f9b106e4a033953ffeea66a5eaa96dfb9a (patch)
tree771b9f27460e31d2ff9565c323413e79807f29ff /src/core/hle/service/service.cpp
parentMerge pull request #2207 from lioncash/hwopus (diff)
downloadyuzu-8603f0f9b106e4a033953ffeea66a5eaa96dfb9a.tar
yuzu-8603f0f9b106e4a033953ffeea66a5eaa96dfb9a.tar.gz
yuzu-8603f0f9b106e4a033953ffeea66a5eaa96dfb9a.tar.bz2
yuzu-8603f0f9b106e4a033953ffeea66a5eaa96dfb9a.tar.lz
yuzu-8603f0f9b106e4a033953ffeea66a5eaa96dfb9a.tar.xz
yuzu-8603f0f9b106e4a033953ffeea66a5eaa96dfb9a.tar.zst
yuzu-8603f0f9b106e4a033953ffeea66a5eaa96dfb9a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 117f87a45..576fd6407 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -76,7 +76,8 @@ namespace Service {
* Creates a function string for logging, complete with the name (or header code, depending
* on what's passed in) the port name, and all the cmd_buff arguments.
*/
-[[maybe_unused]] static std::string MakeFunctionString(const char* name, const char* port_name,
+[[maybe_unused]] static std::string MakeFunctionString(std::string_view name,
+ std::string_view port_name,
const u32* cmd_buff) {
// Number of params == bits 0-5 + bits 6-11
int num_params = (cmd_buff[0] & 0x3F) + ((cmd_buff[0] >> 6) & 0x3F);
@@ -158,9 +159,7 @@ void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {
return ReportUnimplementedFunction(ctx, info);
}
- LOG_TRACE(
- Service, "{}",
- MakeFunctionString(info->name, GetServiceName().c_str(), ctx.CommandBuffer()).c_str());
+ LOG_TRACE(Service, "{}", MakeFunctionString(info->name, GetServiceName(), ctx.CommandBuffer()));
handler_invoker(this, info->handler_callback, ctx);
}