diff options
author | Takashi Iwai <tiwai@suse.de> | 2006-10-05 10:21:19 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2007-02-09 03:00:11 -0500 |
commit | bbb53551e31dce3cdbf61330e135179a55c82fd1 (patch) | |
tree | ca7640169defbca7989ffc96d6c5649dbdbaa157 /sound/pci/emu10k1/emu10k1_main.c | |
parent | 9244b2c3079faac79b3b961116bd548c45087e2c (diff) |
[ALSA] emu10k1 - Fix compile warning
Fixed a compile warning regarding print format for size_t.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/emu10k1/emu10k1_main.c')
-rw-r--r-- | sound/pci/emu10k1/emu10k1_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/emu10k1/emu10k1_main.c b/sound/pci/emu10k1/emu10k1_main.c index 891172f2b1d7..09c4db8495b2 100644 --- a/sound/pci/emu10k1/emu10k1_main.c +++ b/sound/pci/emu10k1/emu10k1_main.c | |||
@@ -615,7 +615,7 @@ static int snd_emu1010_load_firmware(struct snd_emu10k1 * emu, const char * file | |||
615 | snd_printk(KERN_ERR "firmware: %s not found. Err=%d\n",filename, err); | 615 | snd_printk(KERN_ERR "firmware: %s not found. Err=%d\n",filename, err); |
616 | return err; | 616 | return err; |
617 | } | 617 | } |
618 | snd_printk(KERN_INFO "firmware size=0x%x\n",fw_entry->size); | 618 | snd_printk(KERN_INFO "firmware size=0x%zx\n", fw_entry->size); |
619 | if (fw_entry->size != 0x133a4) { | 619 | if (fw_entry->size != 0x133a4) { |
620 | snd_printk(KERN_ERR "firmware: %s wrong size.\n",filename); | 620 | snd_printk(KERN_ERR "firmware: %s wrong size.\n",filename); |
621 | return -EINVAL; | 621 | return -EINVAL; |