summaryrefslogtreecommitdiffstats
path: root/sys/pc98
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-07-13 09:53:11 +0000
committerbde <bde@FreeBSD.org>1998-07-13 09:53:11 +0000
commit925110cd2319780c323091d214a7840895264611 (patch)
tree0b6db913180c8c762bccb935c7f679792b4a731f /sys/pc98
parent8b9760c8843815ead46a252ff5760ee566fa9f0e (diff)
downloadFreeBSD-src-925110cd2319780c323091d214a7840895264611.zip
FreeBSD-src-925110cd2319780c323091d214a7840895264611.tar.gz
Fixed printf format errors (only 1 left in GENERIC now).
Diffstat (limited to 'sys/pc98')
-rw-r--r--sys/pc98/pc98/wfd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/pc98/wfd.c b/sys/pc98/pc98/wfd.c
index 712525f..7f66c48 100644
--- a/sys/pc98/pc98/wfd.c
+++ b/sys/pc98/pc98/wfd.c
@@ -23,7 +23,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: wfd.c,v 1.11 1998/06/26 18:13:57 phk Exp $
+ * $Id: wfd.c,v 1.12 1998/07/04 22:30:19 julian Exp $
*/
/*
@@ -324,9 +324,9 @@ void wfd_describe (struct wfd *t)
if (!no_print) {
printf ("wfd%d: ", t->lun);
- printf ("%lu cyls", t->cap.cyls);
- printf (", %lu heads, %lu S/T", t->cap.heads, t->cap.sectors);
- printf (", %lu B/S", t->cap.sector_size);
+ printf ("%u cyls", t->cap.cyls);
+ printf (", %u heads, %u S/T", t->cap.heads, t->cap.sectors);
+ printf (", %u B/S", t->cap.sector_size);
printf ("\n");
}
}
OpenPOWER on IntegriCloud