aboutsummaryrefslogtreecommitdiff
path: root/coreutils/uniq.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/uniq.c')
-rw-r--r--coreutils/uniq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uniq.c b/coreutils/uniq.c
index 9208d34ec..e0133998a 100644
--- a/coreutils/uniq.c
+++ b/coreutils/uniq.c
@@ -112,7 +112,7 @@ int uniq_main(int argc UNUSED_PARAM, char **argv)
112 /* %7lu matches GNU coreutils 6.9 */ 112 /* %7lu matches GNU coreutils 6.9 */
113 printf("%7lu ", dups + 1); 113 printf("%7lu ", dups + 1);
114 } 114 }
115 printf("%s\n", old_line); 115 puts(old_line);
116 } 116 }
117 free(old_line); 117 free(old_line);
118 } 118 }