We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbee3ca commit ff0433bCopy full SHA for ff0433b
samples/hexdump/src/main.rs
@@ -50,7 +50,7 @@ fn real_main() -> Result<(), neotron_sdk::Error> {
50
// print ascii (with padding)
51
for b in valid {
52
let ch = *b as char;
53
- let _ = write!(stdout, "{}", if !ch.is_control() { ch } else { '?' });
+ let _ = write!(stdout, "{}", if !ch.is_control() { ch } else { '.' });
54
}
55
for _padding in 0..(buffer.len() - valid.len()) {
56
let _ = write!(stdout, ".");
0 commit comments