diff options
author | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-15 19:59:45 +0000 |
---|---|---|
committer | mb <mb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-03-15 19:59:45 +0000 |
commit | 6ba4aff064aa5ed5d252ff136bd5f375f4db5fae (patch) | |
tree | fdff138e1ee0940536d0b387265ba0db808a4d8a /package/gpioctl | |
parent | 7ec3b417259cadca26d9b680395a88264b41c67f (diff) |
gpioctl get: Fix typo in the printf arguments.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10603 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/gpioctl')
-rw-r--r-- | package/gpioctl/src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/gpioctl/src/main.c b/package/gpioctl/src/main.c index 9aa317350..8ad27749b 100644 --- a/package/gpioctl/src/main.c +++ b/package/gpioctl/src/main.c @@ -63,7 +63,7 @@ main(int argc, char **argv) } else if (!strcmp(argv[1], "get")) { result = ioctl(fd, GPIO_GET, gpio_pin); - printf("Pin %d is %s\n", (result ? "HIGH" : "LOW")); + printf("Pin %d is %s\n", gpio_pin, (result ? "HIGH" : "LOW")); } else if (!strcmp(argv[1], "set")) { ioctl(fd, GPIO_SET, gpio_pin); |