summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2008-03-29 23:09:48 +0000
committerLennart Poettering <lennart@poettering.net>2008-03-29 23:09:48 +0000
commit829197db5247f039b09ef5a9f8000c7aede5c863 (patch)
tree158a3b7a4ac448159eff725c566446e5205e2783
parented5528f907fad850f6fa66a5573aa5b151c0856b (diff)
fix compiler warning
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/prepare-0.9.10@2191 fefdeb5f-60dc-0310-8127-8f9354f1896f
-rw-r--r--src/tests/smoother-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/smoother-test.c b/src/tests/smoother-test.c
index caa7df70..0816e76c 100644
--- a/src/tests/smoother-test.c
+++ b/src/tests/smoother-test.c
@@ -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);