diff options
author | das <das@FreeBSD.org> | 2008-02-22 02:27:34 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2008-02-22 02:27:34 +0000 |
commit | 224826f963d94ae5e54026f3bc8889e2b88467f8 (patch) | |
tree | 3f51c01e435ce1f802755c142a3aefb7146691f0 /lib/msun/src/s_trunc.c | |
parent | d74b55ed2baec769d3933c5952422cb55a6d195f (diff) | |
download | FreeBSD-src-224826f963d94ae5e54026f3bc8889e2b88467f8.zip FreeBSD-src-224826f963d94ae5e54026f3bc8889e2b88467f8.tar.gz |
Remove an unused variable.
Diffstat (limited to 'lib/msun/src/s_trunc.c')
-rw-r--r-- | lib/msun/src/s_trunc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/msun/src/s_trunc.c b/lib/msun/src/s_trunc.c index 86e97bd..63a6753 100644 --- a/lib/msun/src/s_trunc.c +++ b/lib/msun/src/s_trunc.c @@ -33,7 +33,7 @@ double trunc(double x) { int32_t i0,i1,j0; - u_int32_t i,j; + u_int32_t i; EXTRACT_WORDS(i0,i1,x); j0 = ((i0>>20)&0x7ff)-0x3ff; if(j0<20) { |