From: Christian Groessler Date: Mon, 26 Aug 2013 10:16:26 +0000 (+0200) Subject: remove warning about missing return value; fix typo X-Git-Tag: V2.15~237^2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=887ba4d501d3bf99c0ec983637bb3e3227a2a987;p=cc65 remove warning about missing return value; fix typo --- diff --git a/testcode/lib/atari/ostype.c b/testcode/lib/atari/ostype.c index e97bd00e6..f5e9296ca 100644 --- a/testcode/lib/atari/ostype.c +++ b/testcode/lib/atari/ostype.c @@ -40,6 +40,7 @@ int main(void) printf("is'a a XL/XE, %s, Rev. %d\n",palntsc ? "PAL" : "NTSC",minor); break; } - printf("hit to continure...\n"); + printf("hit to continue...\n"); c = getchar(); + return 0; }