Make bitfields plain old u_int. u_int16_t makes no sense.

This commit is contained in:
Mark Murray 2003-04-30 12:07:32 +00:00
parent 945e0cea45
commit 13c862e250
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114289

View file

@ -44,13 +44,13 @@ union msf_lba {
struct cd_toc_entry {
#if BYTE_ORDER == LITTLE_ENDIAN
u_int16_t :8;
u_int16_t control:4;
u_int16_t addr_type:4;
u_int :8;
u_int control:4;
u_int addr_type:4;
#else
u_int16_t :8;
u_int16_t addr_type:4;
u_int16_t control:4;
u_int :8;
u_int addr_type:4;
u_int control:4;
#endif
u_char track;
u_int :8;