diff options
author | malc <av1474@comtv.ru> | 2009-09-18 08:06:01 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-09-18 14:04:36 +0400 |
commit | 68f6dc7ebd377ce92abd1f3a991c792143af23b0 (patch) | |
tree | 658552e4379c18de8ee8f785d272fcc64e99a45f /audio | |
parent | tcg: fix size of local variables in tcg_gen_bswap64_i64 (diff) | |
download | qemu-kvm-68f6dc7ebd377ce92abd1f3a991c792143af23b0.tar.gz qemu-kvm-68f6dc7ebd377ce92abd1f3a991c792143af23b0.tar.bz2 qemu-kvm-68f6dc7ebd377ce92abd1f3a991c792143af23b0.zip |
coreaudio: fix sloppy "posixification" by 1ea879e5580f63414693655fcf0328559cdce138
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mixeng.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/mixeng.h b/audio/mixeng.h index cac0569ac..4af1dd989 100644 --- a/audio/mixeng.h +++ b/audio/mixeng.h @@ -27,7 +27,7 @@ #ifdef FLOAT_MIXENG typedef float mixeng_real; struct mixeng_volume { int mute; mixeng_real r; mixeng_real l; }; -struct mixeng_sample { mixeng_real l; mixeng_real r; }; +struct st_sample { mixeng_real l; mixeng_real r; }; #else struct mixeng_volume { int mute; int64_t r; int64_t l; }; struct st_sample { int64_t l; int64_t r; }; |