From ff86abe827883f8faf455aa04853a575fd4ebaa0 Mon Sep 17 00:00:00 2001 From: mjacob Date: Sat, 19 Feb 2000 01:51:43 +0000 Subject: Cleanup some printaouts. --- sys/dev/ic/isp_inline.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'sys/dev') 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 */ -- cgit