mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
* stdlib/divmod_1.c: Use correct type for dummy variable.
* stdlib/mod_1.c: Likewise.
This commit is contained in:
@ -55,7 +55,7 @@ mpn_divmod_1 (quot_ptr, dividend_ptr, dividend_size, divisor_limb)
|
||||
{
|
||||
mp_size_t i;
|
||||
mp_limb_t n1, n0, r;
|
||||
int dummy;
|
||||
mp_limb_t dummy;
|
||||
|
||||
/* ??? Should this be handled at all? Rely on callers? */
|
||||
if (dividend_size == 0)
|
||||
|
Reference in New Issue
Block a user