diff options
| author | 2018-03-19 16:29:03 -0400 | |
|---|---|---|
| committer | 2018-03-19 16:29:03 -0400 | |
| commit | a90ab1dec7b4b4cefc73115310dec57363114a05 (patch) | |
| tree | 45ebd96f672851f816aca4b09b599df5ee8f8c5c /src/core/hle/service/service.cpp | |
| parent | Merge pull request #251 from Subv/tic_tsc (diff) | |
| parent | Clang Fixes (diff) | |
| download | yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.gz yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.tar.xz yuzu-a90ab1dec7b4b4cefc73115310dec57363114a05.zip | |
Merge pull request #252 from N00byKing/3064
Implement Pull #3064 from citra: Clean all format warnings (Yuzu-specific format warnings cleared too)
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()); |