diff options
author | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-08-17 19:25:12 -0400 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-08-17 19:29:16 -0400 |
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, | |||
2916 | struct snd_soc_dai *dai; | 2916 | struct snd_soc_dai *dai; |
2917 | int i, ret = 0; | 2917 | int i, ret = 0; |
2918 | 2918 | ||
2919 | dev_dbg(dev, "dai register %s #%d\n", dev_name(dev), count); | 2919 | dev_dbg(dev, "dai register %s #%Zu\n", dev_name(dev), count); |
2920 | 2920 | ||
2921 | for (i = 0; i < count; i++) { | 2921 | for (i = 0; i < count; i++) { |
2922 | 2922 | ||