From d081f5eeeb26e5f50328417726464222d2fee9c4 Mon Sep 17 00:00:00 2001 From: Thomas Adam Date: Mon, 24 Mar 2025 22:46:44 +0000 Subject: [PATCH] style: remove superfluous debug --- fvwm/style.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/fvwm/style.c b/fvwm/style.c index 600eab15a..9e1d1de63 100644 --- a/fvwm/style.c +++ b/fvwm/style.c @@ -1128,7 +1128,6 @@ static int remove_all_of_style_from_list(style_id_t style_id) /* Check if it's to be wiped */ if (style_id_equals_id(nptr, &style_id)) { - fvwm_debug(__func__, "Style matched. REMOVING"); remove_style_from_list(list, nptr, True); is_changed = True; } @@ -5583,12 +5582,10 @@ void CMD_DestroyStyle(F_CMD_ARGS) action = parse_style_id(action, &s_id); if (action == NULL) { - fvwm_debug(__func__, "ACTION IS NULL. RETURNING"); return; } /* Do it */ - fvwm_debug(__func__, "NAME: %s, CLASS: %s", s_id.class, s_id.name); style_destroy_style(s_id); }