Skip to content

Commit f4c9ed4

Browse files
committed
fixup! ebml::extra: Optimize reader::vuint_at()
1 parent e52f7c9 commit f4c9ed4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libextra/ebml.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,8 @@ pub mod reader {
149149
(0, 0x0), (0, 0x0fffffff),
150150
(8, 0x1fffff), (8, 0x1fffff),
151151
(16, 0x3fff), (16, 0x3fff), (16, 0x3fff), (16, 0x3fff),
152-
(24, 0x7f), (24, 0x7f), (24, 0x7f), (24, 0x7f), (24, 0x7f), (24, 0x7f), (24, 0x7f), (24, 0x7f)
152+
(24, 0x7f), (24, 0x7f), (24, 0x7f), (24, 0x7f),
153+
(24, 0x7f), (24, 0x7f), (24, 0x7f), (24, 0x7f)
153154
];
154155

155156
unsafe {

0 commit comments

Comments
 (0)