| Index: Source/core/html/canvas/CheckedInt.h
|
| diff --git a/Source/core/html/canvas/CheckedInt.h b/Source/core/html/canvas/CheckedInt.h
|
| index 542d9a811d86607fa2f872d0a44126459ef80378..906107b0508a766bc0b447c2c89562b7659d0946 100644
|
| --- a/Source/core/html/canvas/CheckedInt.h
|
| +++ b/Source/core/html/canvas/CheckedInt.h
|
| @@ -529,7 +529,7 @@ OppositeIfSigned(T x)
|
| CheckedInt<int8_t> x(-1);
|
| // 1000 is of type int16_t, is found not to be in range for int8_t,
|
| // x is invalid
|
| - CheckedInt<int8_t> x(int16_t(1000));
|
| + CheckedInt<int8_t> x(int16_t(1000));
|
| // 3123456789 is of type uint32_t, is found not to be in range for int32_t,
|
| // x is invalid
|
| CheckedInt<int32_t> x(uint32_t(3123456789));
|
|
|