diff options
author | bde <bde@FreeBSD.org> | 1998-06-08 09:47:47 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-06-08 09:47:47 +0000 |
commit | 566ee5c323c868aba9bdc6c3d1ad52a3dd7b17e9 (patch) | |
tree | 60516df8ad7a4fdc14c976a4578f7bf48ed75610 /sys/dev/scd | |
parent | faa17713f8d56432bac81058b7e1d2596e19c5b1 (diff) | |
download | FreeBSD-src-566ee5c323c868aba9bdc6c3d1ad52a3dd7b17e9.zip FreeBSD-src-566ee5c323c868aba9bdc6c3d1ad52a3dd7b17e9.tar.gz |
Fixed pedantic semantics errors (bitfields not of type int, signed int
or unsigned int (this doesn't change the struct layout, size or
alignment in any of the files changed in this commit, at least for
gcc on i386's. Using bitfields of type u_char may affect size and
alignment but not packing)).
Diffstat (limited to 'sys/dev/scd')
-rw-r--r-- | sys/dev/scd/scd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/scd/scd.c b/sys/dev/scd/scd.c index 339ccfd..0494a49 100644 --- a/sys/dev/scd/scd.c +++ b/sys/dev/scd/scd.c @@ -41,7 +41,7 @@ */ -/* $Id: scd.c,v 1.36 1998/04/15 17:45:48 bde Exp $ */ +/* $Id: scd.c,v 1.37 1998/06/07 17:10:56 dfr Exp $ */ /* Please send any comments to micke@dynas.se */ @@ -125,8 +125,8 @@ static struct scd_data { struct disklabel dlabel; int openflag; struct { - unsigned char adr :4; - unsigned char ctl :4; /* xcdplayer needs this */ + unsigned int adr :4; + unsigned int ctl :4; /* xcdplayer needs this */ unsigned char start_msf[3]; } toc[MAX_TRACKS]; short first_track; |