Skip to content

Commit 1a1848e

Browse files
committed
---
yaml --- r: 14422 b: refs/heads/try c: a3b655f h: refs/heads/master v: v3
1 parent 5c1fcd9 commit 1a1848e

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: 1e5266260aad92973caeede3500f848c277f84e2
5+
refs/heads/try: a3b655f8e3f1a9e84cd6dd4a1d1d2525d7fac7e7
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105

branches/try/src/libcore/u64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn from_str(buf: str, radix: u64) -> option<u64> {
122122
let i = str::len_bytes(buf) - 1u;
123123
let power = 1u64, n = 0u64;
124124
while true {
125-
alt char::to_digit(buf[i] as char, radix) {
125+
alt char::to_digit(buf[i] as char, radix as uint) {
126126
some(d) { n += d as u64 * power; }
127127
none { ret none; }
128128
}

0 commit comments

Comments
 (0)