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: remove redundant (void *) cast in search_conf()

The (void *) cast is redundant because the last argument of
show_textbox_ext() is an opaque pointer.

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

+1 -2
+1 -2
scripts/kconfig/mconf.c
··· 441 441 res = get_relations_str(sym_arr, &head); 442 442 set_subtitle(); 443 443 dres = show_textbox_ext("Search Results", str_get(&res), 0, 0, 444 - keys, &vscroll, 445 - &hscroll, &update_text, (void *) 444 + keys, &vscroll, &hscroll, &update_text, 446 445 &data); 447 446 again = false; 448 447 for (i = 0; i < JUMP_NB && keys[i]; i++)