summaryrefslogtreecommitdiff
path: root/native
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2006-09-24 15:17:44 +0000
committerMark Wielaard <mark@klomp.org>2006-09-24 15:17:44 +0000
commitff6336ac55138f91793befedda6b6c248cccd3df (patch)
treede4806337ec5a08040b8cde840646ff8dda466d0 /native
parent1fa3d622d0c84ada9590c56a42f2acdf27238a36 (diff)
downloadclasspath-ff6336ac55138f91793befedda6b6c248cccd3df.tar.gz
Suggested by Aaron M. Ucko <ucko@debian.org>
Fixes bug #29203 * native/fdlibm/mprec.c (ulp): Define L as int32_t.
Diffstat (limited to 'native')
-rw-r--r--native/fdlibm/mprec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/native/fdlibm/mprec.c b/native/fdlibm/mprec.c
index e53722f7b..31e09ddaa 100644
--- a/native/fdlibm/mprec.c
+++ b/native/fdlibm/mprec.c
@@ -666,7 +666,7 @@ double
_DEFUN (ulp, (_x), double _x)
{
union double_union x, a;
- register __Long L;
+ register int32_t L;
x.d = _x;