1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix a harmless compiler warning.

FossilOrigin-Name: e1416c8b0628afa062d8cff40d0cd3576dc85460e55b21a271f88fcb608b9f59
This commit is contained in:
drh
2020-06-23 15:29:22 +00:00
parent 6b64718618
commit e78c027b64
3 changed files with 8 additions and 8 deletions

View File

@ -550,7 +550,7 @@ static void decimalMulFunc(
signed char f = pA->a[i];
int carry = 0, x;
for(j=pB->nDigit-1, k=i+j+3; j>=0; j--, k--){
int x = acc[k] + f*pB->a[j] + carry;
x = acc[k] + f*pB->a[j] + carry;
acc[k] = x%10;
carry = x/10;
}