]> 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>
Tue, 10 Jan 2023 11:19:42 +0000 (12:19 +0100)
* tests/test-memset_explicit.c: Fix return type in signature check.

ChangeLog
tests/test-memset_explicit.c

index 370d01990c09446d2181aa322f69ef15c7dada40..b2ca74f922abca9d98d21bb29126134f5bebfdba 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-10  Bruno Haible  <bruno@clisp.org>
 
        math: Fix compilation errors in C++ mode on Android.
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>