diff options
Diffstat (limited to 'src/fileio.c')
-rw-r--r-- | src/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index 76b278b4083..f2f440d0a3b 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -6441,7 +6441,7 @@ static Lisp_Object blocks_to_bytes (uintmax_t blocksize, uintmax_t blocks, bool negate) { intmax_t n; - if (!INT_MULTIPLY_WRAPV (blocksize, blocks, &n)) + if (!ckd_mul (&n, blocksize, blocks)) return make_int (negate ? -n : n); Lisp_Object bs = make_uint (blocksize); if (negate) |