From 6195de98c48a43f1c9d7838e8d2d9d11a1ae3571 Mon Sep 17 00:00:00 2001 From: Oxore Date: Tue, 1 Oct 2019 00:07:36 +0300 Subject: Fix hex parsing using radix 16 instead of 10 --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.rs') 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); -- cgit v1.2.3