about summary refs log tree commit diff
path: root/src/liblog
diff options
context:
space:
mode:
Diffstat (limited to 'src/liblog')
-rw-r--r--src/liblog/directive.rs2
-rw-r--r--src/liblog/lib.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/liblog/directive.rs b/src/liblog/directive.rs
index d33ad0c8185..9d5e1a8f9ed 100644
--- a/src/liblog/directive.rs
+++ b/src/liblog/directive.rs
@@ -9,7 +9,7 @@
 // except according to those terms.
 
 use std::cmp;
-use std::vec_ng::Vec;
+use std::vec::Vec;
 
 #[deriving(Show, Clone)]
 pub struct LogDirective {
diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs
index 7d635b80dad..fa8daf79812 100644
--- a/src/liblog/lib.rs
+++ b/src/liblog/lib.rs
@@ -126,7 +126,7 @@ use std::local_data;
 use std::os;
 use std::rt;
 use std::slice;
-use std::vec_ng::Vec;
+use std::vec::Vec;
 
 use sync::one::{Once, ONCE_INIT};