1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Mark a constant array const in jvp_dtoa.c

This commit is contained in:
Stephen Dolan
2012-09-02 22:24:27 +01:00
parent e3710c0d1f
commit 22ffc0fdfc

View File

@ -867,7 +867,7 @@ pow5mult
{
Bigint *b1, *p5, *p51;
int i;
static int p05[3] = { 5, 25, 125 };
static const int p05[3] = { 5, 25, 125 };
if ((i = k & 3))
b = multadd(C, b, p05[i-1], 0);