diff options
| author | bunnei <bunneidev@gmail.com> | 2020-12-08 21:58:13 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-08 21:58:13 -0800 |
| commit | 6f41763061082d5fa2ab039c554427152243cb46 (patch) | |
| tree | 158dde17ce9426c21c727f03a6e8651b09a2dade /src/core/hle/service/service.cpp | |
| parent | 05a703e15d37265523b7f804e066a80ba14f0096 (diff) | |
| parent | 6b7320add44bf3d933063d0b93296222fd522ef6 (diff) | |
Merge pull request #5166 from lioncash/log-cast
core: Remove unnecessary enum casts in log calls
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 360e0bf37..abf3d1ea3 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -181,7 +181,7 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& co break; } default: - UNIMPLEMENTED_MSG("command_type={}", static_cast<int>(context.GetCommandType())); + UNIMPLEMENTED_MSG("command_type={}", context.GetCommandType()); } context.WriteToOutgoingCommandBuffer(context.GetThread()); |
