From 0960bc29365b8dffbf4f8dc10d29c3fa1fb47b58 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 9 Apr 2024 12:22:54 +0200 Subject: [PATCH] totalorder tests: Fix signature test. * tests/test-totalorder.c: Test the signature of totalorder, not totalorderf. --- ChangeLog | 6 ++++++ tests/test-totalorder.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 82c9899294..0fef174006 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2024-04-09 Bruno Haible + + totalorder tests: Fix signature test. + * tests/test-totalorder.c: Test the signature of totalorder, not + totalorderf. + 2024-04-08 Collin Funk gnulib-tool.py: Use single-quotes for strings, part 2. diff --git a/tests/test-totalorder.c b/tests/test-totalorder.c index fc473a251d..77926e4a5f 100644 --- a/tests/test-totalorder.c +++ b/tests/test-totalorder.c @@ -20,7 +20,7 @@ #include #include "signature.h" -SIGNATURE_CHECK (totalorderf, int, (const float *, const float *)); +SIGNATURE_CHECK (totalorder, int, (const double *, const double *)); #define TOTALORDER totalorder #define TOTALORDER_TYPE memory_double -- 2.39.5