[alsa-devel] [PATCH] Sound WM8958 DSP2: Use correct format string in dev_err() call
To print a value of type size_t one should use %zd, not %d.
Signed-off-by: Jesper Juhl jj@chaosbits.net --- sound/soc/codecs/wm8958-dsp2.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/sound/soc/codecs/wm8958-dsp2.c b/sound/soc/codecs/wm8958-dsp2.c index 8d4ea43..40ac888 100644 --- a/sound/soc/codecs/wm8958-dsp2.c +++ b/sound/soc/codecs/wm8958-dsp2.c @@ -55,7 +55,7 @@ static int wm8958_dsp2_fw(struct snd_soc_codec *codec, const char *name, return 0;
if (fw->size < 32) { - dev_err(codec->dev, "%s: firmware too short (%d bytes)\n", + dev_err(codec->dev, "%s: firmware too short (%zd bytes)\n", name, fw->size); goto err; }
On Mon, 23 Jan 2012, Mark Brown wrote:
On Mon, Jan 23, 2012 at 09:15:48PM +0100, Jesper Juhl wrote:
To print a value of type size_t one should use %zd, not %d.
Applied,
Thank you.
thanks, but please do at least try to use a subject line in the style for the subsystem.
I'll try. I hope I hit closer to that mark with the other patch I just mailed you. :-)
participants (2)
-
Jesper Juhl
-
Mark Brown