fix untrimmed size parse

This commit is contained in:
sim1222 2024-09-29 14:33:37 +09:00
parent 26ca153f57
commit 006a83afac
Signed by: sim1222
GPG Key ID: D1AE30E316E44E5D

View File

@ -343,6 +343,7 @@ async fn main() -> anyhow::Result<()> {
target_file.file.file_name().unwrap().to_str().unwrap() target_file.file.file_name().unwrap().to_str().unwrap()
)) ))
.unwrap() .unwrap()
.trim()
.parse() .parse()
.unwrap(); .unwrap();
sectors.checked_mul(512).unwrap() sectors.checked_mul(512).unwrap()