aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2013-12-27 07:48:26 -0700
committerSteven Fackler <[email protected]>2013-12-27 07:48:26 -0700
commit7db74d5b4f43cd1ede4e2335012faa491cbf15d6 (patch)
treebba37c757e73217cebff20ac78ea055fe88e42c0
parentpkgid -> crate_id (diff)
downloadrust-openssl-7db74d5b4f43cd1ede4e2335012faa491cbf15d6.tar.xz
rust-openssl-7db74d5b4f43cd1ede4e2335012faa491cbf15d6.zip
Update for API change
-rw-r--r--lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib.rs b/lib.rs
index 6f0d3e5a..8725080c 100644
--- a/lib.rs
+++ b/lib.rs
@@ -6,8 +6,8 @@ use std::cast;
use std::libc::{c_int, c_void, c_char};
use std::ptr;
use std::task;
-use std::unstable::atomics::{AtomicBool, INIT_ATOMIC_BOOL, AtomicUint,
- INIT_ATOMIC_UINT, Acquire, Release, SeqCst};
+use std::sync::atomics::{AtomicBool, INIT_ATOMIC_BOOL, AtomicUint,
+ INIT_ATOMIC_UINT, Acquire, Release, SeqCst};
use std::unstable::mutex::Mutex;
use std::io::{Stream, Reader, Writer, Decorator};
use std::vec;