Chromium Code Reviews| Index: src/serialize.h |
| diff --git a/src/serialize.h b/src/serialize.h |
| index 430cb03ff16524bf6db6bda9b292c435ef8d66ff..8cdc2d1e27981716b42e7dc0105247c91f1fb479 100644 |
| --- a/src/serialize.h |
| +++ b/src/serialize.h |
| @@ -374,7 +374,7 @@ class SnapshotByteSource { |
| if ((snapshot_byte & 0x80) == 0) { |
| return snapshot_byte; |
| } |
| - uintptr_t accumulator = (snapshot_byte & 0x7f) << 7; |
| + int accumulator = (snapshot_byte & 0x7f) << 7; |
| while (true) { |
| snapshot_byte = Get(); |
| if ((snapshot_byte & 0x80) == 0) { |