Browse Source
Merge pull request #4148 from Morph1984/silence-warnings
Silence miscellaneous warnings
pull/15/merge
Rodrigo Locatti
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
2 deletions
-
src/core/hle/service/lm/manager.cpp
-
src/yuzu_tester/service/yuzutest.cpp
|
|
|
@ -86,7 +86,8 @@ std::string FormatField(Field type, const std::vector<u8>& data) { |
|
|
|
return Common::StringFromFixedZeroTerminatedBuffer( |
|
|
|
reinterpret_cast<const char*>(data.data()), data.size()); |
|
|
|
default: |
|
|
|
UNIMPLEMENTED(); |
|
|
|
UNIMPLEMENTED_MSG("Unimplemented field type={}", type); |
|
|
|
return ""; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -53,7 +53,7 @@ private: |
|
|
|
|
|
|
|
IPC::ResponseBuilder rb{ctx, 3}; |
|
|
|
rb.Push(RESULT_SUCCESS); |
|
|
|
rb.Push<u32>(write_size); |
|
|
|
rb.Push<u32>(static_cast<u32>(write_size)); |
|
|
|
} |
|
|
|
|
|
|
|
void StartIndividual(Kernel::HLERequestContext& ctx) { |
|
|
|
|