]> git.alsa-project.org Git - alsa-lib.git/commitdiff
seq: ump: Fix typo in function name containing "group"
authorTakashi Iwai <tiwai@suse.de>
Fri, 28 Jul 2023 15:35:02 +0000 (17:35 +0200)
committerTakashi Iwai <tiwai@suse.de>
Fri, 28 Jul 2023 15:35:02 +0000 (17:35 +0200)
In a couple places the function names were misspelled as "gruop"
instead of "group".  Fix them.

Reported-by: Jean-Michaƫl Celerier <jeanmichael.celerier@gmail.com>
Fixes: https://github.com/alsa-project/alsa-lib/pull/337
Signed-off-by: Takashi Iwai <tiwai@suse.de>
include/seq.h
src/seq/seq.c

index 68934037cb8890ce97212349810c13df35d47d44..e55f5c16fadafaf07e8f94ee40619d685af3e5a2 100644 (file)
@@ -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);
index 9d3a18d3ea995e67328d404cbc1f4d3fc4f2f4f4..c4f218dfd5a57faf91f90ab9010e6643130cbbfa 100644 (file)
@@ -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)
 {