From 8b149b513139803ca0fce264d653c45dfbc557d2 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 7 Aug 2003 15:04:27 +0000 Subject: Consistently use the BSD u_int and u_short instead of the SYSV uint and ushort. In most of these files, there was a mixture of both styles and this change just makes them self-consistent. Requested by: bde (kern_ktrace.c) --- sys/dev/ed/if_ed.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/ed') diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c index 06a182595f18..bcc4671d1c63 100644 --- a/sys/dev/ed/if_ed.c +++ b/sys/dev/ed/if_ed.c @@ -3153,7 +3153,7 @@ ed_hpp_write_mbufs(struct ed_softc *sc, struct mbuf *m, int dst) /* finish the last word of the previous mbuf */ if (wantbyte) { savebyte[1] = *data; - *d = *((ushort *) savebyte); + *d = *((u_short *) savebyte); data++; len--; wantbyte = 0; } /* output contiguous words */ -- cgit v1.3