Commit 58a5c41
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>1 parent 21b961e commit 58a5c41
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
83 | 83 | | |
84 | 84 | | |
85 | 85 | | |
86 | | - | |
| 86 | + | |
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
| |||
0 commit comments