fix compilation warning via PRI prefix
authorDeng Zhenrong <dzrongg@gmail.com>
Thu, 22 Mar 2012 13:52:12 +0000 (21:52 +0800)
committerDavid Henningsson <david.henningsson@canonical.com>
Fri, 23 Mar 2012 09:37:23 +0000 (10:37 +0100)
commit737a6180d44c3f4dbe9def42e38c47665b28af15
tree7a369f1ac9531f255a9b4eea43fb7470b0e19f1b
parent4502d7cb2866ccc8a7b96d519d4179892dbc3690
fix compilation warning via PRI prefix

modules/alsa/alsa-mixer.c:3110:21:
    warning: format '%lx' expects argument of type 'long unsigned int', but argument 7 has type 'pa_channel_position_mask_t' [-Wformat]
modules/alsa/alsa-mixer.c:3110:21:
    warning: format '%lx' expects argument of type 'long unsigned int', but argument 8 has type 'pa_channel_position_mask_t' [-Wformat]

pa_channel_position_mask_t is type defined to uint64_t, and to display
uint64_t, it's better to use PRIx64 primitives.

Signed-off-by: Deng Zhenrong <dzrongg@gmail.com>
src/modules/alsa/alsa-mixer.c