Skip to content

Commit b4f7440

Browse files
committed
---
yaml --- r: 2414 b: refs/heads/master c: 10a2093 h: refs/heads/master v: v3
1 parent ac1df73 commit b4f7440

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
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 0f23bbac0104fe4c51923eb09b7a98c3e6239571
2+
refs/heads/master: 10a2093d37bcf13f375a7c3637f4c227b7a21b0c

trunk/src/lib/GenericOS.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
fn getenv(str n) -> Option.t[str] {
22
auto s = OS.libc.getenv(Str.buf(n));
3-
if (s == 0 as Str.sbuf) {
3+
if ((s as int) == 0) {
44
ret Option.none[str];
55
} else {
66
ret Option.some[str](Str.str_from_cstr(s));

0 commit comments

Comments
 (0)