Skip to content

Commit 99db3c9

Browse files
committed
Fix format specifiers for size_t
1 parent d305e87 commit 99db3c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/bigdecimal/bigdecimal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6453,7 +6453,7 @@ VPrint(FILE *fp, const char *cntl_chr, Real *a)
64536453
}
64546454
}
64556455
nc += fprintf(fp, "E%"PRIdSIZE, VpExponent10(a));
6456-
nc += fprintf(fp, " (%"PRIdVALUE", %lu, %lu)", a->exponent, a->Prec, a->MaxPrec);
6456+
nc += fprintf(fp, " (%"PRIdVALUE", %"PRIuSIZE", %"PRIuSIZE")", a->exponent, a->Prec, a->MaxPrec);
64576457
}
64586458
else {
64596459
nc += fprintf(fp, "0.0");

0 commit comments

Comments
 (0)