We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f917ce7 commit 94e3050Copy full SHA for 94e3050
s_mp_faster_read_radix.c
@@ -36,7 +36,7 @@ mp_err s_mp_faster_read_radix(mp_int *a, const char *str, size_t start, size_t e
36
37
len = end - start;
38
39
- if (len < (s_read_radix_cutoff[radix] * MP_READ_RADIX_CUTOFF_MULTIPLICATOR)) {
+ if (len < (size_t)(s_read_radix_cutoff[radix] * MP_READ_RADIX_CUTOFF_MULTIPLICATOR)) {
40
return s_mp_slower_read_radix(a, str, start, end, radix);
41
}
42
0 commit comments