diff options
| author | Steven Fackler <[email protected]> | 2013-12-27 07:48:26 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2013-12-27 07:48:26 -0700 |
| commit | 7db74d5b4f43cd1ede4e2335012faa491cbf15d6 (patch) | |
| tree | bba37c757e73217cebff20ac78ea055fe88e42c0 | |
| parent | pkgid -> crate_id (diff) | |
| download | rust-openssl-7db74d5b4f43cd1ede4e2335012faa491cbf15d6.tar.xz rust-openssl-7db74d5b4f43cd1ede4e2335012faa491cbf15d6.zip | |
Update for API change
| -rw-r--r-- | lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |