Skip to content

Commit f924125

Browse files
committed
---
yaml --- r: 50418 b: refs/heads/auto c: 74d20b4 h: refs/heads/master v: v3
1 parent 164607f commit f924125

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
1414
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
1515
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1616
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17-
refs/heads/auto: eadd358b2a35a64ed91565ce436469089aa9e718
17+
refs/heads/auto: 74d20b46c5aac5c7f058ae33aa5c59fd03dfa88b
1818
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167

branches/auto/src/libcore/unstable/lang.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ pub fn start(main: *u8, argc: int, argv: *c_char,
134134
use rt::start;
135135

136136
unsafe {
137-
let use_new_rt = do str::as_c_str("RUST_NEWRT") |s| {
137+
let use_old_rt = do str::as_c_str("RUST_NEWRT") |s| {
138138
getenv(s).is_null()
139139
};
140-
if use_new_rt {
140+
if use_old_rt {
141141
return rust_start(main as *c_void, argc as c_int, argv,
142142
crate_map as *c_void) as int;
143143
} else {
@@ -159,10 +159,10 @@ pub fn start(main: *u8, argc: int, argv: **c_char,
159159
use rt::start;
160160

161161
unsafe {
162-
let use_new_rt = do str::as_c_str("RUST_NEWRT") |s| {
162+
let use_old_rt = do str::as_c_str("RUST_NEWRT") |s| {
163163
getenv(s).is_null()
164164
};
165-
if use_new_rt {
165+
if use_old_rt {
166166
return rust_start(main as *c_void, argc as c_int, argv,
167167
crate_map as *c_void) as int;
168168
} else {

0 commit comments

Comments
 (0)