Skip to content

Commit ce13c80

Browse files
committed
small type inference fix
1 parent 460faac commit ce13c80

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)