diff options
author | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-03 22:48:44 +0000 |
---|---|---|
committer | malc <malc@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-12-03 22:48:44 +0000 |
commit | 1ea879e5580f63414693655fcf0328559cdce138 (patch) | |
tree | 45f2e4d57a73fd269004d1a32aeb450ad4881c13 /hw/wm8750.c | |
parent | 8b0de438d4c814fc2d7d1330a146a2e1cb8877b2 (diff) | |
download | qemu-1ea879e5580f63414693655fcf0328559cdce138.tar.gz qemu-1ea879e5580f63414693655fcf0328559cdce138.tar.bz2 qemu-1ea879e5580f63414693655fcf0328559cdce138.zip |
Make audio violate POSIX less
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5864 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/wm8750.c')
-rw-r--r-- | hw/wm8750.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/wm8750.c b/hw/wm8750.c index e35492408c..93fa6d7ff6 100644 --- a/hw/wm8750.c +++ b/hw/wm8750.c @@ -170,9 +170,9 @@ static void wm8750_vol_update(struct wm8750_s *s) static void wm8750_set_format(struct wm8750_s *s) { int i; - audsettings_t in_fmt; - audsettings_t out_fmt; - audsettings_t monoout_fmt; + struct audsettings in_fmt; + struct audsettings out_fmt; + struct audsettings monoout_fmt; wm8750_out_flush(s); |