testfw: clang format

This commit is contained in:
Michael Cardell Widerkrantz 2023-03-16 15:08:36 +01:00
parent 9488f0633d
commit 709a4449ff
No known key found for this signature in database
GPG Key ID: D3DB3DDF57E704E5
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ void hexdump(void *buf, int len)
{
uint8_t *byte_buf = (uint8_t *)buf;
for (int i = 0; i < len; i ++) {
for (int i = 0; i < len; i++) {
puthex(byte_buf[i]);
if (i % 2 == 1) {
writebyte(' ');