Added missing parentheses.
A function call had looked like a function pointer (which caused an incompatible comparison).
This commit is contained in:
parent
76a5a72403
commit
f94945308f
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ int main (void)
|
|||
J = 0;
|
||||
}
|
||||
}
|
||||
if (kbhit() && ReadUpperKey == 'Q') {
|
||||
if (kbhit() && ReadUpperKey () == 'Q') {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue