fix(hpu): clippy lint

This commit is contained in:
Nicolas Sarlin
2025-09-19 17:59:31 +02:00
committed by Nicolas Sarlin
parent ae6f96e0ec
commit 4d02d3abb4

View File

@@ -127,11 +127,7 @@ where
Ok(op) => asm_ops.push(AsmOp::Stmt(op)),
Err(err) => {
tracing::warn!("ReadAsm failed @{file}:{}", line + 1);
anyhow::bail!(
"ReadAsm failed @{file}:{} with {}",
line + 1,
err.to_string()
);
anyhow::bail!("ReadAsm failed @{file}:{} with {}", line + 1, err);
}
}
}