summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2024-09-15 05:30:13 +0200
committerDamien Miller <djm@mindrot.org>2024-09-15 05:30:13 +0200
commit0c1165fc78e8fe69b5df71f81a8f944554a68b53 (patch)
treeb3672328d162bfa858a2b472623ba32bf107af7f
parentupstream: bad whitespace in config dump output (diff)
downloadopenssh-0c1165fc78e8fe69b5df71f81a8f944554a68b53.tar.xz
openssh-0c1165fc78e8fe69b5df71f81a8f944554a68b53.zip
avoid gcc warning in fuzz test
-rw-r--r--regress/unittests/test_helper/fuzz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/unittests/test_helper/fuzz.c b/regress/unittests/test_helper/fuzz.c
index 78b36654d..9995b26a6 100644
--- a/regress/unittests/test_helper/fuzz.c
+++ b/regress/unittests/test_helper/fuzz.c
@@ -214,7 +214,7 @@ siginfo(int unused __attribute__((__unused__)))
struct fuzz *
fuzz_begin(u_int strategies, const void *p, size_t l)
{
- struct fuzz *ret = calloc(sizeof(*ret), 1);
+ struct fuzz *ret = calloc(1, sizeof(*ret));
assert(p != NULL);
assert(ret != NULL);