about summary refs log tree commit diff
path: root/src/compiletest/util.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-08-06 12:34:08 -0700
committerBrian Anderson <banderson@mozilla.com>2012-08-06 15:36:30 -0700
commitecaf9e39c9435fa2de4fe393c4b263be36eb2d99 (patch)
tree775f69be65adff65551d96173dd797e32e2c3157 /src/compiletest/util.rs
parentd3a9bb1bd4a1d510bbaca2ab1121e4c85a239247 (diff)
downloadrust-ecaf9e39c9435fa2de4fe393c4b263be36eb2d99.tar.gz
rust-ecaf9e39c9435fa2de4fe393c4b263be36eb2d99.zip
Convert alt to match. Stop parsing alt
Diffstat (limited to 'src/compiletest/util.rs')
-rw-r--r--src/compiletest/util.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiletest/util.rs b/src/compiletest/util.rs
index 027d247ebb8..0c7a0235bee 100644
--- a/src/compiletest/util.rs
+++ b/src/compiletest/util.rs
@@ -7,7 +7,7 @@ fn make_new_path(path: ~str) -> ~str {
 
     // Windows just uses PATH as the library search path, so we have to
     // maintain the current value while adding our own
-    alt getenv(lib_path_env_var()) {
+    match getenv(lib_path_env_var()) {
       option::some(curr) => {
         fmt!{"%s%s%s", path, path_div(), curr}
       }