Skip to content

Commit 2298a2b

Browse files
committed
Whitespace cleanup
1 parent 89f2c43 commit 2298a2b

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/rt/rust_run_program.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ rust_run_program(void* task, const char* argv[],
4343
PROCESS_INFORMATION pi;
4444
BOOL created = CreateProcess(NULL, cmd, NULL, NULL, TRUE,
4545
0, NULL, NULL, &si, &pi);
46-
46+
4747
CloseHandle(si.hStdInput);
4848
CloseHandle(si.hStdOutput);
4949
CloseHandle(si.hStdError);

src/test/compiletest/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ fn run_pretty_test(cx: &cx, props: &test_props, testfile: &str) {
113113
}
114114
};
115115
let actual = srcs.(ivec::len(srcs) - 1u);
116-
116+
117117
if option::is_some(props.pp_exact) {
118118
// Now we have to care about line endings
119119
let cr = "\r";

src/test/stdtest/run.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,19 +31,19 @@ fn test_pipes() {
3131
pipe_in.in, pipe_out.out, pipe_err.out);
3232
os::libc::close(pipe_in.in);
3333
os::libc::close(pipe_out.out);
34-
os::libc::close(pipe_err.out);
35-
34+
os::libc::close(pipe_err.out);
35+
3636
if pid == -1 { fail; }
3737
let expected = "test";
3838
writeclose(pipe_in.out, expected);
3939
let actual = readclose(pipe_out.in);
4040
readclose(pipe_err.in);
4141
os::waitpid(pid);
42-
42+
4343
log expected;
4444
log actual;
4545
assert expected == actual;
46-
46+
4747
fn writeclose(fd: int, s: &str) {
4848
let writer = io::new_writer(
4949
io::fd_buf_writer(fd, option::none));

0 commit comments

Comments
 (0)