| Index: ppapi/tests/test_memory.cc
|
| diff --git a/ppapi/tests/test_memory.cc b/ppapi/tests/test_memory.cc
|
| index 90732276879e83415eae588c2f0582c893427007..d4db7c204caf42dd132e45ca7c860e6695e596d2 100644
|
| --- a/ppapi/tests/test_memory.cc
|
| +++ b/ppapi/tests/test_memory.cc
|
| @@ -30,7 +30,7 @@ void TestMemory::RunTests(const std::string& filter) {
|
|
|
| std::string TestMemory::TestMemAlloc() {
|
| char* buffer = static_cast<char*>(
|
| - memory_dev_interface_->MemAlloc(kTestBufferSize));
|
| + memory_dev_interface_->MemAlloc(static_cast<uint32_t>(kTestBufferSize)));
|
| // Touch a couple of locations. Failure will crash the test.
|
| buffer[0] = '1';
|
| buffer[kTestBufferSize - 1] = '1';
|
|
|