Fix stupid syntax mistake preventing compilation for the A2560K

This commit is contained in:
Vincent Barrilliot 2023-11-01 00:11:50 +01:00
parent ed0354ee8e
commit c185a8f7cf

View file

@ -80,7 +80,7 @@ short cli_test_ps2(short channel, int argc, const char * argv[]) {
} while (
#if MODEL == MODEL_FOENIX_A2560K
// Not totally sure what this is supposed to test. Doesn't seem related to PS/2 anyway.
sys_chan_ioctrl(channel, 0x05, 0, 0) == 0)
sys_chan_ioctrl(channel, 0x05, 0, 0) == 0
#else
(scancode = kbd_get_scancode()) || 1
#endif