Skip to content

Commit 1041880

Browse files
committed
---
yaml --- r: 14111 b: refs/heads/try c: 6cf40bd h: refs/heads/master i: 14109: 0f92026 14107: c02dcb8 14103: 8d957a6 14095: 308c5b0 14079: 959e38f v: v3
1 parent 34668d9 commit 1041880

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
refs/heads/master: 61b1875c16de39c166b0f4d54bba19f9c6777d1a
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 4a81779abd786ff22d71434c6d9a5917ea4cdfff
5-
refs/heads/try: 93450abb4bf6a755b343ca459bbeff92540a7822
5+
refs/heads/try: 6cf40bd0c4ed735a4280b13a699d9d80fa918830
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/libstd/generic_os.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fn setenv(n: str, v: str) { }
2121
fn env() -> [(str,str)] {
2222
let pairs = [];
2323
for p in os::rustrt::rust_env_pairs() {
24-
let vs = str::split(p, '=' as u8);
24+
let vs = str::split_char(p, '=');
2525
assert vec::len(vs) == 2u;
2626
pairs += [(vs[0], vs[1])];
2727
}

0 commit comments

Comments
 (0)