board/vfd.c: Use dump_iobuf() instead of direct dump()

This commit is contained in:
Tau 2019-10-13 13:35:43 -04:00
parent 8ca093c57a
commit bbbb6d08b0
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ static HRESULT vfd_handle_irp(struct irp *irp)
}
dprintf("VFD TX:\n");
dump(vfd_uart.written.bytes, vfd_uart.written.pos);
dump_iobuf(&vfd_uart.written);
vfd_uart.written.pos = 0;
return hr;