Ensure we push a u64 not a size_t

This commit is contained in:
gdkchan
2018-01-18 11:24:23 -03:00
parent f4bbd804c5
commit 61601a01af

View File

@@ -219,7 +219,7 @@ private:
IPC::RequestBuilder rb{ctx, 4};
rb.Push(RESULT_SUCCESS);
rb.Push(buffer.size());
rb.Push(static_cast<u64>(buffer.size()));
LOG_DEBUG(Service, "called");
}