From: malc Date: Fri, 18 Sep 2009 04:06:01 +0000 (+0400) Subject: coreaudio: fix sloppy "posixification" by 1ea879e5580f63414693655fcf0328559cdce138 X-Git-Tag: v0.12.0-rc0~1078 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=68f6dc7ebd377ce92abd1f3a991c792143af23b0;p=thirdparty%2Fqemu.git coreaudio: fix sloppy "posixification" by 1ea879e5580f63414693655fcf0328559cdce138 Signed-off-by: malc --- diff --git a/audio/mixeng.h b/audio/mixeng.h index cac0569ac42..4af1dd98919 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; };