aboutsummaryrefslogtreecommitdiff
path: root/src/about.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/about.c')
-rw-r--r--src/about.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/about.c b/src/about.c
index 3a216c1..197da3f 100644
--- a/src/about.c
+++ b/src/about.c
@@ -5,7 +5,7 @@
#include "common.h"
/* TODO: rewrite in asm. This does NOT need to
- be 7K of object code. */
+ be 5K of object code. */
void more(char *file) {
char c, line = 0;
@@ -15,7 +15,8 @@ void more(char *file) {
putchar(0x7d);
if(!f) {
- printf("%s not found\n", file);
+ fputs("Error reading ", stdout);
+ puts(file);
cgetc();
return;
}