typecast constant in comparison
This commit is contained in:
Родитель
e3ad6d2bd1
Коммит
578f42d588
|
@ -763,7 +763,7 @@ static int dprintf_formatf(
|
|||
/* Decimal integer. */
|
||||
base = 10;
|
||||
|
||||
is_neg = p->data.num.as_signed < 0;
|
||||
is_neg = (p->data.num.as_signed < (mp_intmax_t)0);
|
||||
if(is_neg) {
|
||||
/* signed_num might fail to hold absolute negative minimum by 1 */
|
||||
signed_num = p->data.num.as_signed + (mp_intmax_t)1;
|
||||
|
|
Загрузка…
Ссылка в новой задаче