From: Liam Girdwood Date: Tue, 17 Aug 2010 23:25:12 +0000 (+0100) Subject: ASoC: core - fix build warning on x86_64 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=4c3f9d5fcb46d769f4a52a044fead863419c1d58;p=linux-beck.git ASoC: core - fix build warning on x86_64 Output size_t type as a "%Zu" to avoid warnings. Signed-off-by: Liam Girdwood --- diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 3d480eb3555f..7093c1787128 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -2916,7 +2916,7 @@ int snd_soc_register_dais(struct device *dev, struct snd_soc_dai *dai; int i, ret = 0; - dev_dbg(dev, "dai register %s #%d\n", dev_name(dev), count); + dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count); for (i = 0; i < count; i++) {