This commit is contained in:
Cutieguwu
2025-12-31 11:08:35 -05:00
parent c28fee9f82
commit c2decbc1ba

View File

@@ -24,7 +24,7 @@ fn main() -> anyhow::Result<()> {
OpenOptions::new()
.read(true)
.open(&input_path)
.with_context(move || format!("Failed to open input file: {}", input_path.display()))?
.with_context(|| format!("Failed to open input file: {}", input_path.display()))?
};
let output: File = {