tests: fix type mismatch in varargs passing
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Thu, 9 Apr 2015 15:20:44 +0000 (16:20 +0100)
committerVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Thu, 9 Apr 2015 15:20:44 +0000 (16:20 +0100)
commitd8dd4bea00c0809cb21f57a0a67d1625675af5e1
tree2128ea6bd21fe65c2b2760958bef44686db42ed3
parent338bfe5e35956937db461f80f589cd483b063f22
tests: fix type mismatch in varargs passing

A bitmask is 64 bits, but integer immediates are passed as int
in varargs, which happen to be 32 bit with high probability.

This triggered a valgrind jump-relies-on-uninitalized-value
report well away from the site, since it doesn't trigger on
stack accesses, and there must have been enough zeroes to stop
g_object_set at the right place.
tests/check/elements/audiomixer.c