diff options
Diffstat (limited to 'src/user/lib/libc/std/readline.c')
-rw-r--r-- | src/user/lib/libc/std/readline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/lib/libc/std/readline.c b/src/user/lib/libc/std/readline.c index 5cd9119..50e4f0d 100644 --- a/src/user/lib/libc/std/readline.c +++ b/src/user/lib/libc/std/readline.c @@ -149,7 +149,7 @@ char *freadline(FILE f, readline_history *h) { i = h->n - 1; while (h->str[i] != str) { if (i == 0) { - fprint(f, "READLINE FAIL"); + fprint(f, "readline: internal error"); return 0; } i--; |