diff options
author | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-08-18 00:25:12 +0100 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-08-18 00:29:16 +0100 |
commit | 4c3f9d5fcb46d769f4a52a044fead863419c1d58 (patch) | |
tree | a08589efad946d22f75ed5d24b2359b6f9a53fa9 | |
parent | 1593d7dd8c7b939e31b9d637307b26ada3e3c514 (diff) |
ASoC: core - fix build warning on x86_64
Output size_t type as a "%Zu" to avoid warnings.
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
-rw-r--r-- | sound/soc/soc-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
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++) { |