aboutsummaryrefslogtreecommitdiff
path: root/coreutils/head.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/head.c')
-rw-r--r--coreutils/head.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/head.c b/coreutils/head.c
index 1219dfe8b..b6efabbe0 100644
--- a/coreutils/head.c
+++ b/coreutils/head.c
@@ -117,7 +117,7 @@ print_except_N_last_lines(FILE *fp, unsigned count)
117 char *c; 117 char *c;
118 if (head == count) 118 if (head == count)
119 head = 0; 119 head = 0;
120 fputs(circle[head], stdout); 120 fputs_stdout(circle[head]);
121 c = xmalloc_fgets(fp); 121 c = xmalloc_fgets(fp);
122 if (!c) 122 if (!c)
123 goto ret; 123 goto ret;