summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSkiz <skiznet@aol.com>2024-10-02 16:44:15 -0400
committerSkiz <skiznet@aol.com>2024-10-02 16:44:15 -0400
commita62e735baf4e9c9eb23f56edfce90743ab91d4fe (patch)
treeae7255a8939b008fe309177ad02beeeeb1f1f149
parent84b8fd06d029882afaf66592ce102269560a7588 (diff)
Removed extra text
-rw-r--r--spwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/spwd.c b/spwd.c
index f886241..08a4ec4 100644
--- a/spwd.c
+++ b/spwd.c
@@ -8,8 +8,8 @@ int main(void) {
// Get the current working dir and saves it to "buffer".
getcwd(buffer, sizeof(buffer));
- printf("Current working dir: \n\n%s\n", buffer);
-
+ // Prints current working dir to command line.
+ printf("%s\n", buffer);
return 0;
}