Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ed4b21f

Browse files
author
Stefan Krah
committed
Cosmetic change: initialize digits to 1 (redundant).
1 parent bc771e9 commit ed4b21f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_decimal/libmpdec/mpdecimal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3089,7 +3089,7 @@ _mpd_qaddsub(mpd_t *result, const mpd_t *a, const mpd_t *b, uint8_t sign_b,
30893089
{
30903090
mpd_t *big, *small;
30913091
MPD_NEW_STATIC(big_aligned,0,0,0,0);
3092-
MPD_NEW_CONST(tiny,0,0,0,1,1,1);
3092+
MPD_NEW_CONST(tiny,0,0,1,1,1,1);
30933093
mpd_uint_t carry;
30943094
mpd_ssize_t newsize, shift;
30953095
mpd_ssize_t exp, i;

0 commit comments

Comments
 (0)