diff options
-rw-r--r-- | procps/watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/watch.c b/procps/watch.c index f446ec918..ad44b3a3e 100644 --- a/procps/watch.c +++ b/procps/watch.c | |||
@@ -62,7 +62,7 @@ int watch_main(int argc UNUSED_PARAM, char **argv) | |||
62 | strftime(header + width - time_len, time_len, | 62 | strftime(header + width - time_len, time_len, |
63 | "%Y-%m-%d %H:%M:%S", localtime(&t)); | 63 | "%Y-%m-%d %H:%M:%S", localtime(&t)); |
64 | 64 | ||
65 | puts(header); | 65 | printf("%s\n\n", header); /* compat: empty line */ |
66 | } | 66 | } |
67 | fflush_all(); | 67 | fflush_all(); |
68 | // TODO: 'real' watch pipes cmd's output to itself | 68 | // TODO: 'real' watch pipes cmd's output to itself |