aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core/pcm.c
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2020-03-13 14:02:23 +0100
committerTakashi Iwai <tiwai@suse.de>2020-03-13 15:58:35 +0100
commit296a37fd029dd8a911396e3c28e0bbd5a2720a5d (patch)
treee69037c3f197b0e5a27203dc7c5af566820ca0fc /sound/core/pcm.c
parentALSA: firewire-tascam: Add missing annotation for tscm_hwdep_read_locked() (diff)
downloadlinux-dev-296a37fd029dd8a911396e3c28e0bbd5a2720a5d.tar.xz
linux-dev-296a37fd029dd8a911396e3c28e0bbd5a2720a5d.zip
ALSA: pcm: Fix superfluous snprintf() usage
show_pcm_class() returns obviously a short string that can't overflow PAGE_SIZE. And even if it were to overflow, using snprintf() there is just wrong, as it doesn't return the correct size. So simplify with sprintf() instead. Link: https://lore.kernel.org/r/20200313130223.8908-1-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/pcm.c')
-rw-r--r--sound/core/pcm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/pcm.c b/sound/core/pcm.c
index a141a301369f..b6d2331a82f7 100644
--- a/sound/core/pcm.c
+++ b/sound/core/pcm.c
@@ -1019,7 +1019,7 @@ static ssize_t show_pcm_class(struct device *dev,
str = "none";
else
str = strs[pcm->dev_class];
- return snprintf(buf, PAGE_SIZE, "%s\n", str);
+ return sprintf(buf, "%s\n", str);
}
static DEVICE_ATTR(pcm_class, 0444, show_pcm_class, NULL);