diff --git a/main.c b/main.c index 90da7b7..3859f1d 100644 --- a/main.c +++ b/main.c @@ -140,7 +140,7 @@ int main() if(execv(path, args) != 0) { - fprintf(stderr, "%s%s%s\n", "myTerminal: ", args[0] ,": command not found"); + fprintf(stderr, "%s%s%s\n", "cshell: ", args[0] ,": command not found"); exit(1); //child error - chield needs to be closed manually. exit code 225; } }