You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix format specifier bug in tape_linux_sg messages
The format "0x02%x" prints literal "02" followed by hex value,
instead of the intended zero-padded 2-digit hex "0x%02x".
This caused incorrect output like "M = 0x0234" instead of "M = 0x34".
- 30203I: "0x02%x" -> "0x%02x"
- 30244I: "0x02%x" -> "0x%02x"
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
0 commit comments