summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2008-03-15 19:59:45 +0000
committerMichael Büsch <mb@bu3sch.de>2008-03-15 19:59:45 +0000
commit4769134ec3f4bed51d1cf9dcce711eb91094ec5e (patch)
tree900431a14571b9503224089fa7f934a91d08dd8c
parentc25cc7e6e5d7f7f6ea0713837ae2050bd608a981 (diff)
downloadmaster-31e0f0ae-4769134ec3f4bed51d1cf9dcce711eb91094ec5e.tar.gz
master-31e0f0ae-4769134ec3f4bed51d1cf9dcce711eb91094ec5e.tar.bz2
master-31e0f0ae-4769134ec3f4bed51d1cf9dcce711eb91094ec5e.zip
gpioctl get: Fix typo in the printf arguments.
SVN-Revision: 10603
-rw-r--r--package/gpioctl/src/main.c2
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);