aboutsummaryrefslogtreecommitdiff
path: root/coreutils/watch.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/watch.c')
-rw-r--r--coreutils/watch.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/coreutils/watch.c b/coreutils/watch.c
index b188b4176..81856c867 100644
--- a/coreutils/watch.c
+++ b/coreutils/watch.c
@@ -58,7 +58,6 @@ int watch_main(int argc, char **argv)
58 time_t t; 58 time_t t;
59 59
60 get_terminal_width_height(STDOUT_FILENO, &width, 0); 60 get_terminal_width_height(STDOUT_FILENO, &width, 0);
61 if (width < 1) width = 1; // paranoia
62 header = xrealloc(header, width--); 61 header = xrealloc(header, width--);
63 // '%-*s' pads header with spaces to the full width 62 // '%-*s' pads header with spaces to the full width
64 snprintf(header, width, "Every %ds: %-*s", period, width, cmd); 63 snprintf(header, width, "Every %ds: %-*s", period, width, cmd);