mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:41:42 +00:00
ALSA: xen: Fix -Wformat-truncation warning
The compile warning with -Wformat-truncation at xen_snd_front_cfg_card() is false-positive; the loop can be only for SNDRV_PCM_DEVICES which is at most 32. For suppressing the warning, replace snprintf() with scnprintf(). As stated in the above, truncation doesn't matter. Link: https://lore.kernel.org/r/20230915082802.28684-10-tiwai@suse.de Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
bc44e10abb
commit
7272b8bfba
@ -483,7 +483,7 @@ int xen_snd_front_cfg_card(struct xen_snd_front_info *front_info,
|
||||
*stream_cnt = 0;
|
||||
num_devices = 0;
|
||||
do {
|
||||
snprintf(node, sizeof(node), "%d", num_devices);
|
||||
scnprintf(node, sizeof(node), "%d", num_devices);
|
||||
if (!xenbus_exists(XBT_NIL, xb_dev->nodename, node))
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user