Merge pull request #4839 from wwylele/ipc-sign

ipc_helpers: silent signed comparison warning
This commit is contained in:
Pengfei Zhu 2019-07-15 12:03:31 +08:00 committed by GitHub
commit fb8adcc08c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ class RequestHelperBase {
protected:
Kernel::HLERequestContext* context;
u32* cmdbuf;
ptrdiff_t index = 1;
std::size_t index = 1;
Header header;
public: