Skip to content

Commit b756c36

Browse files
committed
Fix compiletest breakage
1 parent 589ee65 commit b756c36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiletest/procsrv.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ fn run(lib_path: ~str,
4545
let pipe_out = os::pipe();
4646
let pipe_err = os::pipe();
4747
let pid = spawn_process(prog, args,
48-
some(env + target_env(lib_path, prog)),
49-
none, pipe_in.in, pipe_out.out, pipe_err.out);
48+
&some(env + target_env(lib_path, prog)),
49+
&none, pipe_in.in, pipe_out.out, pipe_err.out);
5050

5151
os::close(pipe_in.in);
5252
os::close(pipe_out.out);

0 commit comments

Comments
 (0)