From 03b70f060fa520d0ed7adc3099b9e1b3acafa075 Mon Sep 17 00:00:00 2001 From: Luca Boccassi Date: Sun, 9 Jul 2023 13:03:44 +0100 Subject: [PATCH] sleep: fix unused variable warning log_level_ignored is used only inside the ifdef, so declare it there too --- src/sleep/sleep.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/sleep/sleep.c b/src/sleep/sleep.c index dd860d28584..30e53f3a360 100644 --- a/src/sleep/sleep.c +++ b/src/sleep/sleep.c @@ -53,8 +53,7 @@ static SleepOperation arg_operation = _SLEEP_OPERATION_INVALID; static int write_efi_hibernate_location(const HibernateLocation *hibernate_location, bool required) { - int log_level = required ? LOG_ERR : LOG_DEBUG, - log_level_ignore = required ? LOG_WARNING : LOG_DEBUG; + int log_level = required ? LOG_ERR : LOG_DEBUG; #if ENABLE_EFI _cleanup_(json_variant_unrefp) JsonVariant *v = NULL; @@ -64,7 +63,7 @@ static int write_efi_hibernate_location(const HibernateLocation *hibernate_locat const char *uuid_str; sd_id128_t uuid; struct utsname uts = {}; - int r; + int r, log_level_ignore = required ? LOG_WARNING : LOG_DEBUG; assert(hibernate_location); assert(hibernate_location->swap); -- 2.47.3