Fix ffsdi2 return types.

From-SVN: r3225
This commit is contained in:
Michael Meissner 1993-01-13 20:36:07 +00:00
parent f11f1fb5ce
commit de6cbba6ea
1 changed files with 3 additions and 3 deletions

View File

@ -265,14 +265,14 @@ __ffsdi2 (u)
w.s.high = 0;
w.s.low = ffs (uu.s.low);
if (w.s.low != 0)
return w;
return w.ll;
w.s.low = ffs (uu.s.high);
if (w.s.low != 0)
{
w.s.low += BITS_PER_UNIT * sizeof (SItype);
return w;
return w.ll;
}
return w;
return w.ll;
}
#endif