[pulseaudio-commits] r2191 - /branches/prepare-0.9.10/src/tests/smoother-test.c

svnmailer-noreply at 0pointer.de svnmailer-noreply at 0pointer.de
Sat Mar 29 16:09:49 PDT 2008


Author: lennart
Date: Sun Mar 30 00:09:48 2008
New Revision: 2191

URL: http://0pointer.de/cgi-bin/viewcvs.cgi?rev=2191&root=pulseaudio&view=rev
Log:
fix compiler warning

Modified:
    branches/prepare-0.9.10/src/tests/smoother-test.c

Modified: branches/prepare-0.9.10/src/tests/smoother-test.c
URL: http://0pointer.de/cgi-bin/viewcvs.cgi/branches/prepare-0.9.10/src/tests/smoother-test.c?rev=2191&root=pulseaudio&r1=2190&r2=2191&view=diff
==============================================================================
--- branches/prepare-0.9.10/src/tests/smoother-test.c (original)
+++ branches/prepare-0.9.10/src/tests/smoother-test.c Sun Mar 30 00:09:48 2008
@@ -71,7 +71,7 @@
             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);




More information about the pulseaudio-commits mailing list