mirror of
https://github.com/Momoko-Ayase/Senbei.git
synced 2026-09-19 03:57:59 -04:00
build: require Rust 1.98.1
This commit is contained in:
@@ -396,7 +396,7 @@ impl<'a> Unpacker<'a> {
|
||||
// non-critical for false-positive rejection.
|
||||
if v8 < info6 {
|
||||
let delta = info6.wrapping_sub(v8);
|
||||
if delta <= 0x1000 && delta % 0x200 == 0 {
|
||||
if delta <= 0x1000 && delta.is_multiple_of(0x200) {
|
||||
anchor = Some(probe);
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user