summaryrefslogtreecommitdiff
path: root/peripheral/libmraa/examples/java/BlinkIO.java
diff options
context:
space:
mode:
authorMohammed Habibulla <moch@google.com>2016-07-15 18:10:34 +0000
committerMohammed Habibulla <moch@google.com>2016-07-15 18:10:34 +0000
commit520fa0547a59eacad7d21e071063ef9f852dd1a6 (patch)
treeffaf6d690413a209029a2c3d362f9e85ced58d55 /peripheral/libmraa/examples/java/BlinkIO.java
parentb33fe8d1c1c2ce22c58b02160eeda61b80eb1d26 (diff)
downloadintel-520fa0547a59eacad7d21e071063ef9f852dd1a6.tar.gz
Revert "libmraa: sync with upstream (SHA1: d336e9f)"
Builder is failing This reverts commit b33fe8d1c1c2ce22c58b02160eeda61b80eb1d26. Change-Id: I7bdf169d7303e381549bd16218dd0a7551b4aba9
Diffstat (limited to 'peripheral/libmraa/examples/java/BlinkIO.java')
-rw-r--r--peripheral/libmraa/examples/java/BlinkIO.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/peripheral/libmraa/examples/java/BlinkIO.java b/peripheral/libmraa/examples/java/BlinkIO.java
index 307a649..0e9209d 100644
--- a/peripheral/libmraa/examples/java/BlinkIO.java
+++ b/peripheral/libmraa/examples/java/BlinkIO.java
@@ -50,7 +50,7 @@ public class BlinkIO {
if (argv.length == 0) {
System.out.println("Provide an int arg if you want to flash on something other than " + DEFAULT_IOPIN);
} else {
- iopin = Integer.valueOf(argv[0]);
+ iopin = Integer.valueOf(argv[0], DEFAULT_IOPIN);
}
//! [Interesting]