about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2014-12-13 10:04:55 -0500
committerJorge Aparicio <japaricious@gmail.com>2014-12-13 20:04:41 -0500
commit029789b98cf0115f347fe12fd19bd2c29751f8ce (patch)
tree341227f9ab7e496fd5acc545210e43dde0dcd07f /src/libstd
parent17a9c2764f4713bb1a040afd535af5a30d02a828 (diff)
downloadrust-029789b98cf0115f347fe12fd19bd2c29751f8ce.tar.gz
rust-029789b98cf0115f347fe12fd19bd2c29751f8ce.zip
Get rid of all the remaining uses of `refN`/`valN`/`mutN`/`TupleN`
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/sys/windows/process.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/windows/process.rs b/src/libstd/sys/windows/process.rs
index 356d6f02565..bbfd32ee76b 100644
--- a/src/libstd/sys/windows/process.rs
+++ b/src/libstd/sys/windows/process.rs
@@ -430,8 +430,8 @@ fn with_envp<K, V, T, F>(env: Option<&collections::HashMap<K, V>>, cb: F) -> T w
 
             for pair in env.iter() {
                 let kv = format!("{}={}",
-                                 pair.ref0().container_as_str().unwrap(),
-                                 pair.ref1().container_as_str().unwrap());
+                                 pair.0.container_as_str().unwrap(),
+                                 pair.1.container_as_str().unwrap());
                 blk.extend(kv.utf16_units());
                 blk.push(0);
             }