From e248f0f3c25678c78f8d2518a155bdcd068c00d1 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Mon, 13 Jan 2025 12:51:30 +0100 Subject: [PATCH] libtnccs: Fix build with DEBUG_LEVEL < 1 --- src/libtnccs/tnc/tnc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtnccs/tnc/tnc.c b/src/libtnccs/tnc/tnc.c index 582ad369ad..4ccf1924d6 100644 --- a/src/libtnccs/tnc/tnc.c +++ b/src/libtnccs/tnc/tnc.c @@ -111,7 +111,7 @@ void libtnccs_deinit(void) static bool load_imcvs_from_config(char *filename, bool is_imc) { bool success = FALSE; - int line_nr = 0; + int line_nr DBG_UNUSED = 0; chunk_t *src, line; char *label; -- 2.47.2