From 04a99c48d24e297561076051695043f36eec2dae Mon Sep 17 00:00:00 2001 From: Yu Watanabe Date: Sat, 26 Jul 2025 02:15:56 +0900 Subject: [PATCH] cpu-set-util: fix identical ternary expression Follow-up for fe3ada076ea8799a4d75f2e63adf540992d6fbb2. Fixes CID#1611792. --- src/shared/cpu-set-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/cpu-set-util.c b/src/shared/cpu-set-util.c index c5277f11af8..cef23889caf 100644 --- a/src/shared/cpu-set-util.c +++ b/src/shared/cpu-set-util.c @@ -222,7 +222,7 @@ int config_parse_cpu_set( void *userdata) { CPUSet *c = ASSERT_PTR(data); - int r, level = ltype ? LOG_DEBUG : LOG_DEBUG; + int r, level = ltype ? LOG_DEBUG : LOG_ERR; bool critical = ltype; assert(critical || lvalue); -- 2.47.3