diff options
Diffstat (limited to 'src/floatfns.c')
-rw-r--r-- | src/floatfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 5ae4379c1be..fb6030f69e3 100644 --- a/src/floatfns.c +++ b/src/floatfns.c @@ -626,7 +626,7 @@ This is the same as the exponent of a float.") Lisp_Object val; double f = extract_float (num); - IN_FLOAT (val = logb (f), num); + IN_FLOAT (val = logb (f), "logb", num); XSET (val, Lisp_Int, val); return val; #endif |