projects
/
kopensolaris-gnu
/
glibc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50ad001
)
Fix type of second argument.
author
drepper
<drepper>
Mon, 23 Jun 1997 21:44:36 +0000
(21:44 +0000)
committer
drepper
<drepper>
Mon, 23 Jun 1997 21:44:36 +0000
(21:44 +0000)
sysdeps/m68k/fpu/s_scalbn.c
patch
|
blob
|
history
diff --git
a/sysdeps/m68k/fpu/s_scalbn.c
b/sysdeps/m68k/fpu/s_scalbn.c
index
1d43a75
..
d3ba27f
100644
(file)
--- a/
sysdeps/m68k/fpu/s_scalbn.c
+++ b/
sysdeps/m68k/fpu/s_scalbn.c
@@
-31,7
+31,7
@@
float_type
__CONCATX(__,FUNC) (x, exp)
float_type x;
- int exp;
+
long
int exp;
{
return __m81_u(__CONCATX(__,FUNC))(x, exp);
}