]> Savannah Git Hosting - gnulib.git/commitdiff
memset_explicit tests: Fix signature check.
authorBruno Haible <bruno@clisp.org>
Tue, 10 Jan 2023 11:19:42 +0000 (12:19 +0100)
committerBruno Haible <bruno@clisp.org>
Sat, 14 Jan 2023 20:26:51 +0000 (21:26 +0100)
* tests/test-memset_explicit.c: Fix return type in signature check.

ChangeLog
tests/test-memset_explicit.c

index e735d5cfa2e7c986641f383b5ee340862c36dc6d..88ae4120ee008e5787b9c3220d3baee447cb56aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2023-01-10  Bruno Haible  <bruno@clisp.org>
+
+       memset_explicit tests: Fix signature check.
+       * tests/test-memset_explicit.c: Fix return type in signature check.
+
 2023-01-09  Bruno Haible  <bruno@clisp.org>
 
        threads-h: Improve portability.
index ff5b9e62efa51fcee16caf35b3a351488ae67a97..b36a7cfe76b9c09bd9f62d7897787bb85a42ad78 100644 (file)
@@ -23,7 +23,7 @@
 #include <string.h>
 
 #include "signature.h"
-SIGNATURE_CHECK (memset_explicit, void, (void *, int, size_t));
+SIGNATURE_CHECK (memset_explicit, void *, (void *, int, size_t));
 
 #include <limits.h>
 #include <stdio.h>