[alsa-devel] ASoC updates for 2.6.37

Dimitris Papastamos dp at opensource.wolfsonmicro.com
Mon Sep 27 10:21:14 CEST 2010


>   sound/soc/codecs/wm8985.c: In function 'wm8985_hw_params':
>   sound/soc/codecs/wm8985.c:731:2: warning: format '%d' expects type 'int', but argument 4 has type 'size_t'
> 
> Actually the variable is fine as int.

I'd guess the expected fix is to change '%d' to '%zu'. The reason for it
being size_t is that is used in an expression involving ARRAY_SIZE(...)
which uses sizeof. But it does not really matter in actual fact because
the array will never be large enough to cause sign confusion.

Thanks,
Dimitrios



More information about the Alsa-devel mailing list