From: Tobias Brunner Date: Tue, 2 May 2023 12:16:02 +0000 (+0200) Subject: sec-updater: Fix build with DEBUG_LEVEL < 1 X-Git-Tag: 5.9.11rc1~12^2~1 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=21f01808ff8770c5ba24817284ba8de99bc88085;p=thirdparty%2Fstrongswan.git sec-updater: Fix build with DEBUG_LEVEL < 1 --- diff --git a/src/sec-updater/sec-updater.c b/src/sec-updater/sec-updater.c index fd0a863722..1df442a214 100644 --- a/src/sec-updater/sec-updater.c +++ b/src/sec-updater/sec-updater.c @@ -173,7 +173,7 @@ static bool update_database(database_t *db, char *package, char *version, while (e->enumerate(e, &vid, &release, &sec_flag)) { char command[BUF_LEN]; - char found_char = ' '; + char found_char DBG_UNUSED = ' '; bool update_version = FALSE; if (streq(version, release))