diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2001-01-25 13:25:41 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2001-01-25 13:25:41 +0000 |
commit | 7da9de5748641820006445bc9f4963c89a8c2d50 (patch) | |
tree | 6172f0e4e77bff9ffe0650ff51d1cb5277f1ec5b /usr.sbin/rtprio | |
parent | 1019384e319fdb89ffc37ac19df0929c02c0629c (diff) | |
download | FreeBSD-src-7da9de5748641820006445bc9f4963c89a8c2d50.zip FreeBSD-src-7da9de5748641820006445bc9f4963c89a8c2d50.tar.gz |
Return exit value 0 on success when PID is specified.
Diffstat (limited to 'usr.sbin/rtprio')
-rw-r--r-- | usr.sbin/rtprio/rtprio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/rtprio/rtprio.c b/usr.sbin/rtprio/rtprio.c index 9c650a6..fc6ab41 100644 --- a/usr.sbin/rtprio/rtprio.c +++ b/usr.sbin/rtprio/rtprio.c @@ -123,6 +123,7 @@ main(argc, argv) execvp(argv[2], &argv[2]); err(1, "%s", argv[2]); } + exit(0); } exit (1); } |