Skip to content

Commit d8b34b2

Browse files
committed
Fix breakage
1 parent c0c8d3a commit d8b34b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/fuzzer/fuzzer.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,10 +251,10 @@ fn check_variants_T<T: copy>(
251251
let L = vec::len(things);
252252

253253
if L < 100u {
254-
do under(uint::min(L, 20u)) |i| {
254+
do under(uint::min(&L, &20u)) |i| {
255255
log(error, ~"Replacing... #" + uint::str(i));
256256
let fname = str::from_slice(filename.to_str());
257-
do under(uint::min(L, 30u)) |j| {
257+
do under(uint::min(&L, &30u)) |j| {
258258
log(error, ~"With... " + stringifier(@things[j], intr));
259259
let crate2 = @replacer(crate, i, things[j], cx.mode);
260260
// It would be best to test the *crate* for stability, but

src/rustdoc/unindent_pass.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fn unindent(s: ~str) -> ~str {
5656
false
5757
}
5858
};
59-
uint::min(min_indent, spaces)
59+
uint::min(&min_indent, &spaces)
6060
}
6161
};
6262

0 commit comments

Comments
 (0)