diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2016-07-23 06:30:00 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2016-07-23 06:30:00 +0000 |
commit | 81fc45fc2362c2594207c6beb9236872b845e919 (patch) | |
tree | eca9414a48c298181e9786f2b2c0ddaf80872832 /bin/ps | |
parent | bd4dcc3e5f315dac23f646b299cf8cb82b6113a1 (diff) |
Addm missed required call to xo_finish() when only header is printed.
Reported by: pho
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Notes
Notes:
svn path=/head/; revision=303213
Diffstat (limited to 'bin/ps')
-rw-r--r-- | bin/ps/ps.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/ps/ps.c b/bin/ps/ps.c index 70b6db32ca2f..8db87c98cdf7 100644 --- a/bin/ps/ps.c +++ b/bin/ps/ps.c @@ -612,6 +612,7 @@ main(int argc, char *argv[]) if (nkept == 0) { printheader(); + xo_finish(); exit(1); } |