diff options
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 a1ca8a033..d4b08aadf 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -149,7 +149,7 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& co | |||
| 149 | break; | 149 | break; |
| 150 | } | 150 | } |
| 151 | default: | 151 | default: |
| 152 | UNIMPLEMENTED_MSG("command_type=%d", context.GetCommandType()); | 152 | UNIMPLEMENTED_MSG("command_type=%d", static_cast<int>(context.GetCommandType())); |
| 153 | } | 153 | } |
| 154 | 154 | ||
| 155 | context.WriteToOutgoingCommandBuffer(*Kernel::GetCurrentThread()); | 155 | context.WriteToOutgoingCommandBuffer(*Kernel::GetCurrentThread()); |