Chromium Code Reviews| Index: runtime/vm/random.h |
| diff --git a/runtime/vm/random.h b/runtime/vm/random.h |
| index 311760f807c87a635e5cf92da02d9fbc35390136..2af1fa78a004ac29d3bf0cd183a08ae8bbd78298 100644 |
| --- a/runtime/vm/random.h |
| +++ b/runtime/vm/random.h |
| @@ -20,7 +20,7 @@ class Random { |
| uint32_t NextUInt32(); |
| uint64_t NextUInt64() { |
| return (static_cast<uint64_t>(NextUInt32()) << 32) | |
| - static_cast<uint64_t>(NextUInt32()); |
| + static_cast<uint64_t>(NextUInt32()); |
| } |
| private: |