diff options
author | imp <imp@FreeBSD.org> | 1997-03-31 05:11:47 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 1997-03-31 05:11:47 +0000 |
commit | 691010efad5c05f7ee86a870abce217fe8e9b8d1 (patch) | |
tree | b28e04577780319990238a98e7549582e44d9d51 /usr.sbin/qcamcontrol | |
parent | 3d7b78ed8c2fd06816b04ddcb57d58281409aa62 (diff) | |
download | FreeBSD-src-691010efad5c05f7ee86a870abce217fe8e9b8d1.zip FreeBSD-src-691010efad5c05f7ee86a870abce217fe8e9b8d1.tar.gz |
compare return value from getopt against -1 rather than EOF, per the final
posix standard on the topic.
Diffstat (limited to 'usr.sbin/qcamcontrol')
-rw-r--r-- | usr.sbin/qcamcontrol/qcamcontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/qcamcontrol/qcamcontrol.c b/usr.sbin/qcamcontrol/qcamcontrol.c index 8df213e..e174d63 100644 --- a/usr.sbin/qcamcontrol/qcamcontrol.c +++ b/usr.sbin/qcamcontrol/qcamcontrol.c @@ -84,7 +84,7 @@ main(int argc, char **argv) x_size = y_size = zoom = depth = brightness = whitebalance = contrast = exposure = -1; - while ((opt = getopt(argc, argv, "p:x:y:z:d:b:w:c:e:")) != EOF) { + while ((opt = getopt(argc, argv, "p:x:y:z:d:b:w:c:e:")) != -1) { switch (opt) { case 'p': port = optarg; |