misc: Fix format specifiers
authorPeter Meerwald <pmeerw@pmeerw.net>
Tue, 12 Aug 2014 22:21:04 +0000 (00:21 +0200)
committerPeter Meerwald <pmeerw@pmeerw.net>
Mon, 18 Aug 2014 13:31:19 +0000 (15:31 +0200)
commit1849cfdad92cb56f5510f46405c98caa9e6b7577
treecc59d2020763274ff421a3a53d11d8d5bb6f2ae7
parent8d2d7da5e602de75ddf241cdc41a03f9d30ad8ab
misc: Fix format specifiers

to print a pa_usec_t, the format specifier to use is "%" PRIu64

modules/module-combine-sink.c: In function 'update_latency_range':
modules/module-combine-sink.c:750:5: warning: format '%lu' expects argument of type 'long unsigned int', but argument 6 has type 'pa_usec_t' [-Wformat]
modules/module-combine-sink.c:750:5: warning: format '%lu' expects argument of type 'long unsigned int', but argument 7 has type 'pa_usec_t' [-Wformat]

to print a size_t, use %zu

Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
src/modules/module-combine-sink.c
src/tests/mcalign-test.c