Get rid of one warning

This commit is contained in:
grischka 2008-03-08 19:57:26 +00:00
parent 2eaa1104f7
commit c6537d11cb

View file

@ -399,7 +399,7 @@ long long __moddi3(long long u, long long v)
if (vv.s.high < 0) if (vv.s.high < 0)
vv.ll = __negdi2 (vv.ll); vv.ll = __negdi2 (vv.ll);
__udivmoddi4 (uu.ll, vv.ll, &w); __udivmoddi4 (uu.ll, vv.ll, (UDWtype *) &w);
if (c) if (c)
w = __negdi2 (w); w = __negdi2 (w);
return w; return w;