summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorOxore <oxore@protonmail.com>2019-10-01 00:07:36 +0300
committerOxore <oxore@protonmail.com>2019-10-01 00:07:36 +0300
commit6195de98c48a43f1c9d7838e8d2d9d11a1ae3571 (patch)
tree51485977426e72c7597adb7566ef38c3f8ed4ca8 /src/main.rs
parent0832a0dddad7782b8ac7a06c76d3e58ab2a56864 (diff)
Fix hex parsing using radix 16 instead of 10
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 17ef6e7..f424b0e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -55,6 +55,8 @@ fn main() {
},
};
+ println!("{}", core.op());
+
thread::spawn(move || {
let (ref should_stop, ref condvar) = *asyncpair2;
core_worker(core, should_stop, condvar);