From a3f5ae536952802893e397cc47f9f299a08d73cf Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Thu, 1 Feb 2018 15:00:39 -0600 Subject: [PATCH] typo in shell README --- processes-shell/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/processes-shell/README.md b/processes-shell/README.md index 733821c..9a30640 100644 --- a/processes-shell/README.md +++ b/processes-shell/README.md @@ -217,6 +217,7 @@ Since your code will be graded with automated testing, you should print this ``` char error_message\[30\] = \"An error has occurred\\n\"; write(STDERR_FILENO, error_message, strlen(error_message)); +``` For this project, the error message should be printed to **stderr**. Also, do not attempt to add whitespaces or tabs or extra error messages.