diff options
author | zhang jiao <zhangjiao2@cmss.chinamobile.com> | 2024-11-14 15:58:22 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-11-14 14:38:40 +0100 |
commit | 9b4662d0df9f4433f1828904ba5e8733c1ad5158 (patch) | |
tree | 1c3844cdf23d090fdbf4c04e64e46f936068d07b /sound/core/ump.c | |
parent | b773c086ed58c7e9111a4d4f251a98db3d4165d8 (diff) |
ALSA: ump: Fix the wrong format specifier
The format specifier of "unsigned int" in snprintf()
should be "%u", not "%d".
Signed-off-by: zhang jiao <zhangjiao2@cmss.chinamobile.com>
Link: https://patch.msgid.link/20241114075822.41614-1-zhangjiao2@cmss.chinamobile.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/ump.c')
-rw-r--r-- | sound/core/ump.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/ump.c b/sound/core/ump.c index ab4932dc499f..5d4dd207e5ab 100644 --- a/sound/core/ump.c +++ b/sound/core/ump.c @@ -387,7 +387,7 @@ int snd_ump_block_new(struct snd_ump_endpoint *ump, unsigned int blk, fb->info.first_group = first_group; fb->info.num_groups = num_groups; /* fill the default name, may be overwritten to a better name */ - snprintf(fb->info.name, sizeof(fb->info.name), "Group %d-%d", + snprintf(fb->info.name, sizeof(fb->info.name), "Group %u-%u", first_group + 1, first_group + num_groups); /* put the entry in the ordered list */ |