diff options
author | netchild <netchild@FreeBSD.org> | 2006-08-07 22:50:26 +0000 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2006-08-07 22:50:26 +0000 |
commit | 96c91f71274788eb9b30c7021df515103cb7607b (patch) | |
tree | 466028935efc651733689bf8bc3e3549c10371ff | |
parent | 24645f4f70036f007c730d7874982b12e15d05c1 (diff) | |
download | FreeBSD-src-96c91f71274788eb9b30c7021df515103cb7607b.zip FreeBSD-src-96c91f71274788eb9b30c7021df515103cb7607b.tar.gz |
"Change type for flags bitmap to let use 1 as flag value without
overflow (to -1)."
Submitted by: Yuriy Tsibizov <Yuriy.Tsibizov@gfk.ru>
-rw-r--r-- | sys/dev/sound/pci/emu10kx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pci/emu10kx.c b/sys/dev/sound/pci/emu10kx.c index fb728e8..e9d6a5c 100644 --- a/sys/dev/sound/pci/emu10kx.c +++ b/sys/dev/sound/pci/emu10kx.c @@ -229,7 +229,7 @@ struct emu_voice { int vnum; - int b16:1, stereo:1, busy:1, running:1, ismaster:1; + unsigned int b16:1, stereo:1, busy:1, running:1, ismaster:1; int speed; int start; int end; |