Get rid of one warning
This commit is contained in:
parent
2eaa1104f7
commit
c6537d11cb
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue