From 1b96e96c5ce1797f8a60e2055e3afebeabda21c5 Mon Sep 17 00:00:00 2001 From: "Val S." Date: Sun, 12 Oct 2025 16:15:39 -0400 Subject: [PATCH] Fix compiler warning Mismatched declaration and definition. --- libclamav/matcher.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libclamav/matcher.h b/libclamav/matcher.h index 32581f0de..310451b46 100644 --- a/libclamav/matcher.h +++ b/libclamav/matcher.h @@ -390,6 +390,6 @@ cl_error_t cli_matchmeta(cli_ctx *ctx, const char *fname, size_t fsizec, size_t * - 9 - MachO * @param ctx The current scan context */ -void cli_targetinfo(struct cli_target_info *info, unsigned int target, cli_ctx *ctx); +void cli_targetinfo(struct cli_target_info *info, cli_target_t target, cli_ctx *ctx); #endif