aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-20 16:20:48 +0100
committerSebastiano Tronto <sebastiano.tronto@gmail.com>2021-11-20 16:20:48 +0100
commite04bd49636ef3490a8f4845189e4c9c9cfa1b059 (patch)
tree51b175f2386eb71c3c95195f5b20bb9408da221d
parenta8c4da5b955eab2eed9ebb03ee4b1212ec6fe042 (diff)
downloadnissy-e04bd49636ef3490a8f4845189e4c9c9cfa1b059.tar.gz
nissy-e04bd49636ef3490a8f4845189e4c9c9cfa1b059.zip
Fix typo in welcome message
-rw-r--r--src/shell.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/shell.c b/src/shell.c
index 0880f8a..a23ea06 100644
--- a/src/shell.c
+++ b/src/shell.c
@@ -64,8 +64,9 @@ launch()
64 for (i = 0; i < MAXNTOKENS; i++) 64 for (i = 0; i < MAXNTOKENS; i++)
65 shell_argv[i] = malloc((MAXTOKENLEN+1) * sizeof(char)); 65 shell_argv[i] = malloc((MAXTOKENLEN+1) * sizeof(char));
66 66
67 fprintf(stderr, "Welcome to Nissy "VERSION".\n"); 67 fprintf(stderr, "Welcome to Nissy "VERSION".\n"
68 fprintf(stderr, "Type 'help' for a list.\n"); 68 "Type \"commands\" for a list of commands.\n"
69 );
69 70
70 while (true) { 71 while (true) {
71 fprintf(stderr, "nissy-# "); 72 fprintf(stderr, "nissy-# ");

Generated with cgit - Back to sebastiano.tronto.net