Skip to content

Commit 2732f60

Browse files
authored
Merge pull request #285 from robamu/small-type-inference-fix
small type inference fix
2 parents 460faac + ce13c80 commit 2732f60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/html/html_cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ fn parse_register(
400400
}
401401
}
402402
let table = vec![
403-
(filling > u16::MAX as _)
403+
(filling > u16::MAX as u64)
404404
.then(|| object!({"headers": (16..32).rev().collect::<Vec<_>>(), "fields": table[0]})),
405405
(filling > 0)
406406
.then(|| object!({"headers": (0..16).rev().collect::<Vec<_>>(), "fields": table[1]})),

0 commit comments

Comments
 (0)