OLD | NEW |
(Empty) | |
| 1 diff --git a/base/third_party/dmg_fp/dtoa.cc b/base/third_party/dmg_fp/dtoa.cc |
| 2 index d7e6826..be560bc 100644 |
| 3 --- a/base/third_party/dmg_fp/dtoa.cc |
| 4 +++ b/base/third_party/dmg_fp/dtoa.cc |
| 5 @@ -1533,7 +1533,7 @@ hexdig_init(void) /* Use of hexdig_init omitted 20121220 t
o avoid a */ |
| 6 htinit(hexdig, USC "ABCDEF", 0x10 + 10); |
| 7 } |
| 8 #else |
| 9 -static unsigned char hexdig[256] = { |
| 10 +static const unsigned char hexdig[256] = { |
| 11 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
| 12 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
| 13 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, |
OLD | NEW |