From 881ac93b6c556267e5d0510d7898d3bfbc5260b9 Mon Sep 17 00:00:00 2001 From: Christian Groessler Date: Mon, 26 Aug 2013 12:16:26 +0200 Subject: [PATCH] remove warning about missing return value; fix typo --- testcode/lib/atari/ostype.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.39.5