CAC_GET4() was incorrectly defined, fix it. Not used currently, but bio(4)

support I'm working on does.
This commit is contained in:
mhitch 2007-06-27 17:57:55 +00:00
parent a69c525cfd
commit 6fc4ae964e

View File

@ -1,4 +1,4 @@
/* $NetBSD: cacvar.h,v 1.15 2007/03/04 06:01:51 christos Exp $ */
/* $NetBSD: cacvar.h,v 1.16 2007/06/27 17:57:55 mhitch Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -69,7 +69,7 @@
(((u_char *)&(x))[0] | (((u_char *)&(x))[1] << 8))
#define CAC_GET4(x) \
((((u_char *)&(x))[0] | (((u_char *)&(x))[1] << 8)) | \
(((u_char *)&(x))[0] << 16 | (((u_char *)&(x))[1] << 24)))
(((u_char *)&(x))[2] << 16 | (((u_char *)&(x))[3] << 24)))
struct cac_softc;
struct cac_ccb;