summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar N00byKing2018-03-19 17:07:08 +0100
committerGravatar N00byKing2018-03-19 17:07:08 +0100
commitef875d6a356fef22d52ec2cdf2a326297740ff66 (patch)
tree8565762859d7be0329fb5991819b8381c690527d /src/core/hle/service/service.cpp
parentMerge pull request #251 from Subv/tic_tsc (diff)
downloadyuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.gz
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.tar.xz
yuzu-ef875d6a356fef22d52ec2cdf2a326297740ff66.zip
Clean Warnings (?)
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
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());