diff options
author | Michael Büsch <mb@bu3sch.de> | 2008-03-15 19:59:45 +0000 |
---|---|---|
committer | Michael Büsch <mb@bu3sch.de> | 2008-03-15 19:59:45 +0000 |
commit | 4769134ec3f4bed51d1cf9dcce711eb91094ec5e (patch) | |
tree | 900431a14571b9503224089fa7f934a91d08dd8c | |
parent | c25cc7e6e5d7f7f6ea0713837ae2050bd608a981 (diff) | |
download | upstream-4769134ec3f4bed51d1cf9dcce711eb91094ec5e.tar.gz upstream-4769134ec3f4bed51d1cf9dcce711eb91094ec5e.tar.bz2 upstream-4769134ec3f4bed51d1cf9dcce711eb91094ec5e.zip |
gpioctl get: Fix typo in the printf arguments.
SVN-Revision: 10603
-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 9aa317350f..8ad27749b4 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); |