diff --git a/sys/dev/isp/isp_inline.h b/sys/dev/isp/isp_inline.h index 1c9acb72744..861424218f0 100644 --- a/sys/dev/isp/isp_inline.h +++ b/sys/dev/isp/isp_inline.h @@ -286,14 +286,12 @@ isp_print_qentry(isp, msg, idx, arg) { int amt, i, j; u_int8_t *ptr = arg; - PRINTF("%s %s index %d:\n ", isp->isp_name, msg, idx); + PRINTF("%s %s index %d:\n", isp->isp_name, msg, idx); for (amt = i = 0; i < 4; i++) { for (j = 0; j < (QENTRY_LEN >> 2); j++) { PRINTF(" %02x", ptr[amt++] & 0xff); } - PRINTF("\n "); + PRINTF("\n"); } - PRINTF("\n"); } - #endif /* _ISP_INLINE_H */