mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-09 13:29:59 -05:00
minor fix to make gcc shut up
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1960 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
parent
56804de3d3
commit
87faa546c2
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ int main(int argc, char*argv[]) {
|
|||
|
||||
for (x = 0, u = 0; x < PA_USEC_PER_SEC * 10; x += PA_USEC_PER_MSEC) {
|
||||
|
||||
while (msec[u] > 0 && msec[u]*PA_USEC_PER_MSEC < x) {
|
||||
while (msec[u] > 0 && (pa_usec_t) msec[u]*PA_USEC_PER_MSEC < x) {
|
||||
pa_smoother_put(s, msec[u]*PA_USEC_PER_MSEC, msec[u+1]*PA_USEC_PER_MSEC);
|
||||
printf("%i\t\t%i\n", msec[u], msec[u+1]);
|
||||
u += 2;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue