diff options
author | mjacob <mjacob@FreeBSD.org> | 2000-01-04 05:17:48 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2000-01-04 05:17:48 +0000 |
commit | 59326b98ed9aee28ca52d8d88e14366b6b10d639 (patch) | |
tree | 06652783cc2a453418805b7f3b9d8d8844f95fce /sys/dev/isp | |
parent | 27682aeaa711c380713937a7f70fcd66ad825eb6 (diff) | |
download | FreeBSD-src-59326b98ed9aee28ca52d8d88e14366b6b10d639.zip FreeBSD-src-59326b98ed9aee28ca52d8d88e14366b6b10d639.tar.gz |
oop, use PRINTF not printf in MI code
Diffstat (limited to 'sys/dev/isp')
-rw-r--r-- | sys/dev/isp/isp_inline.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/isp/isp_inline.h b/sys/dev/isp/isp_inline.h index 17d998d..1c9acb7 100644 --- a/sys/dev/isp/isp_inline.h +++ b/sys/dev/isp/isp_inline.h @@ -291,7 +291,7 @@ isp_print_qentry(isp, msg, idx, arg) for (j = 0; j < (QENTRY_LEN >> 2); j++) { PRINTF(" %02x", ptr[amt++] & 0xff); } - printf("\n "); + PRINTF("\n "); } PRINTF("\n"); } |