Commit d9e91d58 authored by David S. Miller's avatar David S. Miller

[KCONFIG]: Fix pointer cast from int in mconf.c

parent 6ebe5a01
......@@ -492,7 +492,7 @@ static void conf(struct menu *menu)
switch (type) {
case 'm':
if (single_menu_mode)
submenu->data = (void *) !submenu->data;
submenu->data = (void *) (long) !submenu->data;
else
conf(submenu);
break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment