From 58da05803b1851ff5661cccb5b8ba11f7a8a6e53 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Fri, 28 Jul 2023 17:35:02 +0200 Subject: [PATCH] seq: ump: Fix typo in function name containing "group" MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit In a couple places the function names were misspelled as "gruop" instead of "group". Fix them. Reported-by: Jean-Michaël Celerier Fixes: https://github.com/alsa-project/alsa-lib/pull/337 Signed-off-by: Takashi Iwai --- include/seq.h | 2 +- src/seq/seq.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/seq.h b/include/seq.h index 68934037..e55f5c16 100644 --- a/include/seq.h +++ b/include/seq.h @@ -333,7 +333,7 @@ void snd_seq_port_info_set_timestamping(snd_seq_port_info_t *info, int enable); void snd_seq_port_info_set_timestamp_real(snd_seq_port_info_t *info, int realtime); void snd_seq_port_info_set_timestamp_queue(snd_seq_port_info_t *info, int queue); void snd_seq_port_info_set_direction(snd_seq_port_info_t *info, int direction); -void snd_seq_port_info_set_ump_gruop(snd_seq_port_info_t *info, int ump_group); +void snd_seq_port_info_set_ump_group(snd_seq_port_info_t *info, int ump_group); int snd_seq_create_port(snd_seq_t *handle, snd_seq_port_info_t *info); int snd_seq_delete_port(snd_seq_t *handle, int port); diff --git a/src/seq/seq.c b/src/seq/seq.c index 9d3a18d3..c4f218df 100644 --- a/src/seq/seq.c +++ b/src/seq/seq.c @@ -2545,7 +2545,7 @@ void snd_seq_port_info_set_direction(snd_seq_port_info_t *info, int direction) * \param info port_info container * \param ump_group 0 for no conversion, or the (1-based) UMP Group number * - * \sa snd_seq_get_port_info(), snd_seq_port_info_get_ump_gruop() + * \sa snd_seq_get_port_info(), snd_seq_port_info_get_ump_group() */ void snd_seq_port_info_set_ump_group(snd_seq_port_info_t *info, int ump_group) { -- 2.47.1