From: Greg King Date: Sat, 17 Oct 2015 15:53:16 +0000 (-0400) Subject: Added missing parentheses. X-Git-Tag: V2.16~211^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=refs%2Fpull%2F220%2Fhead;p=cc65 Added missing parentheses. A function call had looked like a function pointer (which caused an incompatible comparison). --- diff --git a/samples/sieve.c b/samples/sieve.c index 9f110ec98..8d0619888 100644 --- a/samples/sieve.c +++ b/samples/sieve.c @@ -110,7 +110,7 @@ int main (void) J = 0; } } - if (kbhit() && ReadUpperKey == 'Q') { + if (kbhit() && ReadUpperKey () == 'Q') { break; } }