From 3267d356d272bf40043e492478b0da121d8af483 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 5 May 2025 20:41:56 +0200 Subject: [PATCH] unit: The precheck function also takes test data as parameter --- unit/test-storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit/test-storage.c b/unit/test-storage.c index 1ee81dbf..9382efa6 100644 --- a/unit/test-storage.c +++ b/unit/test-storage.c @@ -30,7 +30,7 @@ #include "src/storage.h" -static bool aes_ctr_supported(void) +static bool aes_ctr_supported(const void *data) { return l_cipher_is_supported(L_CIPHER_AES_CTR); }