about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-10-21 17:03:01 +0000
committerUlrich Drepper <drepper@redhat.com>2000-10-21 17:03:01 +0000
commitd1990c556227b4ab884ee562e91000e6c74c98d8 (patch)
tree1dc18d2862f93adc8ca2f5601fee7eacb5bd406c
parent92ec318f0da011e808516c50f9b55973382427aa (diff)
downloadglibc-d1990c556227b4ab884ee562e91000e6c74c98d8.tar.gz
glibc-d1990c556227b4ab884ee562e91000e6c74c98d8.tar.xz
glibc-d1990c556227b4ab884ee562e91000e6c74c98d8.zip
(main): The output was missing a newline.
-rw-r--r--io/pwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io/pwd.c b/io/pwd.c
index 006f1d306f..21f4e51541 100644
--- a/io/pwd.c
+++ b/io/pwd.c
@@ -35,7 +35,7 @@ main (void)
     perror ("getcwd");
   else
     {
-      fputs_unlocked (dir, stdout);
+      puts (dir);
       free (dir);
     }