summaryrefslogtreecommitdiffstats
path: root/bin/ps/ps.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>1997-03-28 15:24:41 +0000
committerimp <imp@FreeBSD.org>1997-03-28 15:24:41 +0000
commit054f35c2222ef251bc2877814cf7bf5ff6038166 (patch)
treebf569c1217b3803ad2d64ba6083e1610213c7ece /bin/ps/ps.c
parent3ad19c4ae3d0f156867d86a310e2d6d0f40a7a51 (diff)
downloadFreeBSD-src-054f35c2222ef251bc2877814cf7bf5ff6038166.zip
FreeBSD-src-054f35c2222ef251bc2877814cf7bf5ff6038166.tar.gz
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Diffstat (limited to 'bin/ps/ps.c')
-rw-r--r--bin/ps/ps.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ps/ps.c b/bin/ps/ps.c
index ee2d407..a26b981 100644
--- a/bin/ps/ps.c
+++ b/bin/ps/ps.c
@@ -30,7 +30,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id$
+ * $Id: ps.c,v 1.17 1997/02/22 14:05:08 peter Exp $
*/
#ifndef lint
@@ -139,7 +139,7 @@ main(argc, argv)
ttydev = NODEV;
memf = nlistf = swapf = NULL;
while ((ch = getopt(argc, argv,
- "aCceghjLlM:mN:O:o:p:rSTt:U:uvW:wx")) != EOF)
+ "aCceghjLlM:mN:O:o:p:rSTt:U:uvW:wx")) != -1)
switch((char)ch) {
case 'a':
all = 1;
OpenPOWER on IntegriCloud