1
0
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:
Ulrich Drepper
2008-10-17 08:38:08 +00:00
parent 5df2a427be
commit 292eb8177e
4 changed files with 8 additions and 3 deletions

View File

@ -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)