aboutsummaryrefslogtreecommitdiff
path: root/obi.c
diff options
context:
space:
mode:
Diffstat (limited to 'obi.c')
-rw-r--r--obi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/obi.c b/obi.c
index 72cff00..6f12d9a 100644
--- a/obi.c
+++ b/obi.c
@@ -74,7 +74,7 @@ void interpret(machine_t *cpu, node_t *ast, size_t num)
void usage(const char *name, FILE *fp)
{
fprintf(fp,
- "Usage: %s [FILE]...\n\tInterprets FILE as a brainfuck program"
+ "Usage: %s FILE...\n\tInterprets FILE as a BrainFuck program"
"\n",
name);
}
@@ -116,7 +116,7 @@ int main(int argc, char *argv[])
res = parse_buffer(buffer);
if (res.nodes == NULL)
{
- fputs("Exiting early...\n", stderr);
+ fputs("[WARNING]: Empty source file.", stderr);
ret = 1;
goto end;
}