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

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