summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.bin/colldef/parse.y5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/colldef/parse.y b/usr.bin/colldef/parse.y
index e362bb0..c35ea7e 100644
--- a/usr.bin/colldef/parse.y
+++ b/usr.bin/colldef/parse.y
@@ -34,7 +34,6 @@ __FBSDID("$FreeBSD$");
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
-#include <stdlib.h>
#include <unistd.h>
#include <sysexits.h>
#include "collate.h"
@@ -297,9 +296,9 @@ main(int ac, char **av)
int ch;
#ifdef COLLATE_DEBUG
- while((ch = getopt(ac, av, ":do:I:")) != EOF) {
+ while((ch = getopt(ac, av, ":do:I:")) != -1) {
#else
- while((ch = getopt(ac, av, ":o:I:")) != EOF) {
+ while((ch = getopt(ac, av, ":o:I:")) != -1) {
#endif
switch (ch)
{
OpenPOWER on IntegriCloud