summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Warner <james.warner@comcast.net>2013-09-17 00:00:00 -0500
committerJaromir Capik <jcapik@redhat.com>2013-09-17 20:27:02 +0200
commit4141efaf13254564f0377289bcf5a1a1389f60af (patch)
tree883cd9fd2d785326bcbb932bccd1f51e2e5ca022
parente6bbcdb4926e83ecee33ffa84307be8c7cf10091 (diff)
downloadprocps-ng-4141efaf13254564f0377289bcf5a1a1389f60af.tar.gz
top: restore the lost final newline when in Batch mode
This patch adds the final newline when exiting 'Batch' mode. Interestingly, it has been missing since release 3.3.5 but undetected until the Redhat bugzilla report. Reference(s): https://bugzilla.redhat.com/show_bug.cgi?id=1008674 Signed-off-by: Jim Warner <james.warner@comcast.net>
-rw-r--r--top/top.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/top/top.c b/top/top.c
index 6f4f728..44bc380 100644
--- a/top/top.c
+++ b/top/top.c
@@ -527,6 +527,7 @@ static void bye_bye (const char *str) {
fputs(str, stderr);
exit(EXIT_FAILURE);
}
+ if (Batch) putp("\n");
exit(EXIT_SUCCESS);
} // end: bye_bye