diff options
| author | mjacob <mjacob@NetBSD.org> | 2000-02-19 01:51:43 +0000 |
|---|---|---|
| committer | mjacob <mjacob@NetBSD.org> | 2000-02-19 01:51:43 +0000 |
| commit | ff86abe827883f8faf455aa04853a575fd4ebaa0 (patch) | |
| tree | 30e8c83eab419c66e5d83cab8697de40add9ec4f /sys/dev/ic/isp_inline.h | |
| parent | b6dd4ddacf8769c70a9ee43d63b29bb961c96b94 (diff) | |
Cleanup some printaouts.
Diffstat (limited to 'sys/dev/ic/isp_inline.h')
| -rw-r--r-- | sys/dev/ic/isp_inline.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/sys/dev/ic/isp_inline.h b/sys/dev/ic/isp_inline.h index 65603a521a0..b2f78b0f769 100644 --- a/sys/dev/ic/isp_inline.h +++ b/sys/dev/ic/isp_inline.h @@ -1,4 +1,4 @@ -/* $NetBSD: isp_inline.h,v 1.4 2000/01/06 02:56:20 mjacob Exp $ */ +/* $NetBSD: isp_inline.h,v 1.5 2000/02/19 01:51:43 mjacob Exp $ */ /* * Copyright (C) 1999 National Aeronautics & Space Administration * All rights reserved. @@ -218,14 +218,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 */ |
