whoops: use puts, not fputs
authorJim Meyering <jim@meyering.net>
Thu, 23 Jun 2005 15:34:52 +0000 (15:34 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 23 Jun 2005 15:34:52 +0000 (15:34 +0000)
src/date.c

index ad8864a..c53bc6d 100644 (file)
@@ -553,7 +553,7 @@ show_date (const char *format, struct timespec when)
        break;
     }
 
-  fputs (out, stdout);
+  puts (out);
   free (out);
   return true;
 }