From 9a22b56d3646b198c64d49a861d7b8e586edd386 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Wed, 6 Aug 2008 08:21:27 +0000 Subject: [PATCH] - remove erroneous & from &var. By Vladimir. (r23056 from trunk) --- console-tools/kbd_mode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/console-tools/kbd_mode.c b/console-tools/kbd_mode.c index 161495719..4de3bb650 100644 --- a/console-tools/kbd_mode.c +++ b/console-tools/kbd_mode.c @@ -46,7 +46,7 @@ int kbd_mode_main(int ATTRIBUTE_UNUSED argc, char **argv) printf("The keyboard is in %s mode\n", mode); } else { opt = opt & UNICODE ? 3 : opt >> 1; - xioctl(fd, KDSKBMODE, &opt); + xioctl(fd, KDSKBMODE, opt); } if (ENABLE_FEATURE_CLEAN_UP) -- 2.25.1