diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-12 17:54:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-12 17:54:20 -0400 |
commit | 0f6dd7b64e3dda8fd1d5f75ebac6938a952c0f3f (patch) | |
tree | ec9d3d731215e2d8e669f62fa568843b1e1f3482 /src | |
parent | 2ad44a453f39dd7d78eb7513a277872169b42b3a (diff) | |
parent | 8603f0f9b106e4a033953ffeea66a5eaa96dfb9a (diff) |
Merge pull request #2222 from lioncash/cstr
service/service: Remove unncessary calls to c_str()
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/service.cpp | 7 |
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); } |