diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-11-17 10:18:19 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-11-17 10:18:19 +0000 |
commit | 456114ddc3ad351c4cc6b20a3af5665a60418711 (patch) | |
tree | b19cb6091aca3836b58fe54016244a6fc11f957e | |
parent | 329f749f6015fa83accbcce469b137e18a007554 (diff) |
Unbreak; noticed by evol@online.ptt.ru.
-rw-r--r-- | usr.sbin/gpioctl/gpioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/gpioctl/gpioctl.c b/usr.sbin/gpioctl/gpioctl.c index 0e5250ef978..50e9ea09cf3 100644 --- a/usr.sbin/gpioctl/gpioctl.c +++ b/usr.sbin/gpioctl/gpioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: gpioctl.c,v 1.3 2005/11/16 16:40:28 deraadt Exp $ */ +/* $OpenBSD: gpioctl.c,v 1.4 2005/11/17 10:18:18 grange Exp $ */ /* * Copyright (c) 2004 Alexander Yurchenko <grange@openbsd.org> * @@ -65,7 +65,7 @@ main(int argc, char *argv[]) int do_ctl = 0; int pin = 0, value = 0; - while ((ch = getopt(argc, argv, "cd:h")) != -1) + while ((ch = getopt(argc, argv, "cd:q")) != -1) switch (ch) { case 'c': do_ctl = 1; |