]> code.delx.au - pulseaudio/commitdiff
fix compiler warning
authorLennart Poettering <lennart@poettering.net>
Sat, 29 Mar 2008 23:09:48 +0000 (23:09 +0000)
committerLennart Poettering <lennart@poettering.net>
Sat, 29 Mar 2008 23:09:48 +0000 (23:09 +0000)
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/prepare-0.9.10@2191 fefdeb5f-60dc-0310-8127-8f9354f1896f

src/tests/smoother-test.c

index caa7df70aad1c9c8eabba6f517dc1983b79e5a07..0816e76c27684069026b5d9b9b08564dc6b2fd70 100644 (file)
@@ -71,7 +71,7 @@ int main(int argc, char*argv[]) {
             u += 2;
         }
 
-        printf("%llu\t%llu\n", x/PA_USEC_PER_MSEC, pa_smoother_get(s, x)/PA_USEC_PER_MSEC);
+        printf("%llu\t%llu\n", (unsigned long long) (x/PA_USEC_PER_MSEC), (unsigned long long) (pa_smoother_get(s, x)/PA_USEC_PER_MSEC));
     }
 
     pa_smoother_free(s);