Skip to content

Commit 3528e02

Browse files
committed
fix: resolve critical printf syntax error blocking cargo-wrt build
- Fix malformed printf statement in wrt-error/src/recovery.rs:194 - This was preventing cargo-wrt from building, which blocked CI tooling - wrt-error crate now builds successfully - This should resolve the 'cargo-wrt: command not found' errors in CI
1 parent 8592488 commit 3528e02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wrt-error/src/recovery.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ impl ErrorRecoveryManager {
191191
#[cfg(feature = "std")]
192192
{
193193
use std::println;
194-
println!("Warning: {} at {}", error.message, context.location;)
194+
println!("Warning: {} at {}", error.message, context.location);
195195
}
196196
RecoveryResult::Continue
197197
},

0 commit comments

Comments
 (0)