summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2000-01-15 01:43:19 +0000
committermjacob <mjacob@FreeBSD.org>2000-01-15 01:43:19 +0000
commitb483a178f2541a524e95b59550689db5dfeeb949 (patch)
tree6e6582b5a9af16e87d82881448bddcabea83df71 /sys
parentcbb57f023094c6b6cc6a225a9297fc629eaf5928 (diff)
downloadFreeBSD-src-b483a178f2541a524e95b59550689db5dfeeb949.zip
FreeBSD-src-b483a178f2541a524e95b59550689db5dfeeb949.tar.gz
tighten up printout
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/isp/isp_inline.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/isp/isp_inline.h b/sys/dev/isp/isp_inline.h
index 1c9acb7..8614242 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 */
OpenPOWER on IntegriCloud