Skip to content
Snippets Groups Projects
Commit 903fa590 authored by Leah Rowe's avatar Leah Rowe
Browse files

util/nvmutil: don't display errant whitespace

At the end of each line is an errant space.

Fix that.
parent 65d7e7c1
Branches
Tags
No related merge requests found
......@@ -269,10 +269,10 @@ void
hexdump(int partnum)
{
for (int row = 0; row < 8; row++) {
printf("%07x ", row << 4);
printf("%07x", row << 4);
for (int c = 0; c < 8; c++) {
uint16_t val16 = word((row << 3) + c, partnum);
printf("%02x%02x ", val16 >> 8, val16 & 0xff);
printf(" %02x%02x", val16 >> 8, val16 & 0xff);
}
printf("\n");
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment