diff options
author | Pierre Ossman <ossman@cendio.se> | 2006-01-05 19:13:11 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2006-01-05 19:13:11 +0000 |
commit | c5bee95cdf30661b4090d86f4e0ab36109228fae (patch) | |
tree | 25cef88dfdef132ad00fc9f9dfdab9410b55981c | |
parent | 4deeaefbe116f6374b3cdb7a4186bb1bf7afefe2 (diff) |
Fix correct type.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/ossman@385 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r-- | polyp/sample-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polyp/sample-util.c b/polyp/sample-util.c index d521afe4..bf8be34e 100644 --- a/polyp/sample-util.c +++ b/polyp/sample-util.c @@ -161,7 +161,7 @@ size_t pa_mix(struct pa_mix_info channels[], unsigned nchannels, void *data, siz size_t d; for (d = 0;; d += sizeof(float)) { - float_t sum = 0; + pa_volume_t sum = 0; unsigned c; if (d >= length) |