From nobody Wed Oct 8 22:37:18 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 66A222DCC14; Tue, 24 Jun 2025 15:07:38 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750777658; cv=none; b=nFd+1OVCBql48iNd5LvqDMqBXJBjUHk3rzj7o/tii+g8XfDdlYtKoJzJkiS4tag3jhUows5nKrwg56THjssoePxvgX3FwVC9XinKeeH1JIUKd+uol8VylEDlN1deDD0zpwBFljLOp/0EfqcfBmNDH8seTm5TAjG1c+6AtN/jSh0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1750777658; c=relaxed/simple; bh=+eP9owx5Mga3rQXBjpqoo4y+J1aKKuXfBEaV7R+UZ+o=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fOQt250uDk/lzRJg+nkcQwZc3NzyMneKaPhQH3WCyKE1Yp5L1LgDPQln94OeOWK04CYRsNPRzgs0toWZVMTy3YNDrvHseKnuiM8VhzV4tSOKIa9kcNO74oy9m3u2Jperh+vhya46RELOpRk1pSL0qP1rw6P9T785xVinZME8nBA= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=FR0cZmPq; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="FR0cZmPq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 99469C4CEEE; Tue, 24 Jun 2025 15:07:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1750777657; bh=+eP9owx5Mga3rQXBjpqoo4y+J1aKKuXfBEaV7R+UZ+o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=FR0cZmPqfzoXlT500JZTIVV40yBAmhIfXrip52FkuUKy7ggQY5aeTEiAHy5uvxqS4 oF6pnfRMwIY/asU4enyMQj+DK5iolc6BmGSXX8blg0In5FdFlFIuScg3uG41O2/cHD iQWxiEpTjCVFwBa3z8dV9l9EJBA6OwGNATWLxTLpUVohclgco9cuOMesax40J+P/vK xZpwNG887rbh9N6OCUfrADiTxmvzY+/YkBzKp9pWNbEAccPpTdBasv1w+c7nlDdt1c N6Gek1eTG99v85SMB39CjdkkBQAGHhyz51qkNLKDZgQHJ7mjvwn0HbpH9RkBYwUU9C PS8WiaBx/Ytow== From: Masahiro Yamada To: linux-kbuild@vger.kernel.org Cc: Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH 11/66] kconfig: gconf: remove meaningless code in init_main_window() Date: Wed, 25 Jun 2025 00:04:59 +0900 Message-ID: <20250624150645.1107002-12-masahiroy@kernel.org> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250624150645.1107002-1-masahiroy@kernel.org> References: <20250624150645.1107002-1-masahiroy@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" The 'widget' variable is set, but not used in later code. Signed-off-by: Masahiro Yamada Acked-by: Randy Dunlap --- scripts/kconfig/gconf.c | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 7960c456e3b9..4b5befa4f685 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -129,7 +129,6 @@ static void init_main_window(const gchar *glade_file) conf_set_changed_callback(conf_changed); =20 style =3D gtk_widget_get_style(main_wnd); - widget =3D glade_xml_get_widget(xml, "toolbar1"); =20 replace_button_icon(xml, main_wnd->window, style, "button4", (gchar **) xpm_single_view); --=20 2.43.0