Skip to content

Commit a14dc3a

Browse files
committed
---
yaml --- r: 51170 b: refs/heads/try c: 74d20b4 h: refs/heads/master v: v3
1 parent 0c75305 commit a14dc3a

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
@@ -2,7 +2,7 @@
22
refs/heads/master: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: f7a2371c176663d59062ec5158f39faecba45768
5-
refs/heads/try: eadd358b2a35a64ed91565ce436469089aa9e718
5+
refs/heads/try: 74d20b46c5aac5c7f058ae33aa5c59fd03dfa88b
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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)