Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kconfig: gconf: remove unneeded variable in text_insert_msg

The 'msg' and 'message' refer to the same pointer.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>

+1 -2
+1 -2
scripts/kconfig/gconf.c
··· 90 90 } 91 91 92 92 93 - static void text_insert_msg(const char *title, const char *message) 93 + static void text_insert_msg(const char *title, const char *msg) 94 94 { 95 95 GtkTextBuffer *buffer; 96 96 GtkTextIter start, end; 97 - const char *msg = message; 98 97 99 98 buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(text_w)); 100 99 gtk_text_buffer_get_bounds(buffer, &start, &end);