diff options
author | William Breathitt Gray <vilhelm.gray@gmail.com> | 2016-04-11 13:25:52 (GMT) |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-04-11 14:06:17 (GMT) |
commit | dc5027a72369f4979a48d628ddebeeb974b7eb37 (patch) | |
tree | 3f9eea569721d249fdbc95d7cf48e4c7fd11289d /sound | |
parent | b4203ff5464da00b7812e7b480192745b0d66bbf (diff) | |
download | linux-dc5027a72369f4979a48d628ddebeeb974b7eb37.tar.xz |
ALSA: sscape: Use correct format identifier for size_t
The 'size' member of a struct firmware is passed to snd_printk with a
respective format string using the %d identifier. The 'size' member is
of type size_t, but format identifier %d indicates a signed int data
type. This patch replaces the %d format identifier with the correct %zu
format identifier for size_t data types.
Signed-off-by: William Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/isa/sscape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/isa/sscape.c b/sound/isa/sscape.c index 7b248cd..fdcfa29 100644 --- a/sound/isa/sscape.c +++ b/sound/isa/sscape.c @@ -591,7 +591,7 @@ static int sscape_upload_microcode(struct snd_card *card, int version) } err = upload_dma_data(sscape, init_fw->data, init_fw->size); if (err == 0) - snd_printk(KERN_INFO "sscape: MIDI firmware loaded %d KBs\n", + snd_printk(KERN_INFO "sscape: MIDI firmware loaded %zu KBs\n", init_fw->size >> 10); release_firmware(init_fw); |