From: "Maciej Soltysiak" make gconfig causes this: scripts/kconfig/gconf.c: In function `on_treeview1_button_press_event': scripts/kconfig/gconf.c:1175: warning: passing arg 1 of `gtk_widget_grab_focus' from incompatible pointer type scripts/kconfig/gconf.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/kconfig/gconf.c~gconfig-warning-fix scripts/kconfig/gconf.c --- 25/scripts/kconfig/gconf.c~gconfig-warning-fix 2003-12-20 07:26:29.000000000 -0800 +++ 25-akpm/scripts/kconfig/gconf.c 2003-12-20 07:26:58.000000000 -0800 @@ -1172,7 +1172,7 @@ on_treeview1_button_press_event(GtkWidge gtk_widget_realize(tree2_w); gtk_tree_view_set_cursor(view, path, NULL, FALSE); - gtk_widget_grab_focus(GTK_TREE_VIEW(tree2_w)); + gtk_widget_grab_focus(GTK_WIDGET(tree2_w)); return FALSE; } _