Ensure we push a u64 not a size_t
This commit is contained in:
@@ -219,7 +219,7 @@ private:
|
|||||||
IPC::RequestBuilder rb{ctx, 4};
|
IPC::RequestBuilder rb{ctx, 4};
|
||||||
|
|
||||||
rb.Push(RESULT_SUCCESS);
|
rb.Push(RESULT_SUCCESS);
|
||||||
rb.Push(buffer.size());
|
rb.Push(static_cast<u64>(buffer.size()));
|
||||||
|
|
||||||
LOG_DEBUG(Service, "called");
|
LOG_DEBUG(Service, "called");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user