diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-09-10 20:32:41 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2005-09-10 20:32:41 +0000 |
commit | d6d0591057c6746aeccffea3b852bd3905ec3910 (patch) | |
tree | 1338f4bd914064f824da50a3dd04a4fad59ee3c9 /sys/dev/ic | |
parent | f4bbb644674dc7d95f02d6516e04d46f012a32a3 (diff) |
Prettier diagnostic message; ok deraadt@.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/i82365.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/i82365.c b/sys/dev/ic/i82365.c index 462c0a7c2d9..edd950e95de 100644 --- a/sys/dev/ic/i82365.c +++ b/sys/dev/ic/i82365.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i82365.c,v 1.23 2004/05/04 16:59:31 grange Exp $ */ +/* $OpenBSD: i82365.c,v 1.24 2005/09/10 20:32:40 grange Exp $ */ /* $NetBSD: i82365.c,v 1.10 1998/06/09 07:36:55 thorpej Exp $ */ /* @@ -1442,7 +1442,7 @@ pcic_chip_socket_enable(pch) #ifdef DIAGNOSTIC reg = pcic_read(h, PCIC_IF_STATUS); if (!(reg & PCIC_IF_STATUS_POWERACTIVE)) { - printf("pcic_chip_socket_enable: status %x", reg); + printf("pcic_chip_socket_enable: status %x\n", reg); } #endif |