Skip to content
Commit dc5027a7 authored by William Breathitt Gray's avatar William Breathitt Gray Committed by Takashi Iwai
Browse files

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: default avatarWilliam Breathitt Gray <vilhelm.gray@gmail.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent b4203ff5
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment