changeset 16109:349096e3d58d

copysignf tests: Fix. * tests/test-copysignf.c: Fix signature check.
author Bruno Haible <bruno@clisp.org>
date Sun, 20 Nov 2011 17:38:19 +0100
parents 61640b95f81e
children 146b5e66e142
files ChangeLog tests/test-copysignf.c
diffstat 2 files changed, 6 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-11-20  Bruno Haible  <bruno@clisp.org>
+
+	copysignf tests: Fix.
+	* tests/test-copysignf.c: Fix signature check.
+
 2011-11-20  Bruno Haible  <bruno@clisp.org>
 
 	fma: Remove unused code.
--- a/tests/test-copysignf.c
+++ b/tests/test-copysignf.c
@@ -21,7 +21,7 @@
 #include <math.h>
 
 #include "signature.h"
-SIGNATURE_CHECK (copysignf, double, (double, double));
+SIGNATURE_CHECK (copysignf, float, (float, float));
 
 #include "macros.h"
 #include "minus-zero.h"