From 530e2f8131802a8861178a79754bcf79e3ceaa14 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Fri, 19 Jul 2024 14:30:12 +0200 Subject: [PATCH] ump_msg: Correct a typo in snd_ump_msg_flex_data_t definition. There was a typo in snd_ump_msg_flex_data_t definition; it should be "set_metronome". Fixes: 30f8ba74c5a2 ("ump_msg: Add definitions for Utility, Stream and Flex Data messages") Signed-off-by: Takashi Iwai --- include/ump_msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/ump_msg.h b/include/ump_msg.h index 3d8f95ef..9b189144 100644 --- a/include/ump_msg.h +++ b/include/ump_msg.h @@ -677,7 +677,7 @@ typedef union _snd_ump_msg_flex_data { snd_ump_msg_flex_data_meta_t text; /**< Text data */ snd_ump_msg_set_tempo_t set_tempo; /**< Set Tempo */ snd_ump_msg_set_time_sig_t set_time_sig; /**< Set Time Signature */ - snd_ump_msg_set_metronome_t set_metronoe; /**< Set Metronome */ + snd_ump_msg_set_metronome_t set_metronome; /**< Set Metronome */ snd_ump_msg_set_chord_name_t set_chord_name; /**< Set Chord Name */ snd_ump_msg_hdr_t hdr; /**< UMP header */ uint32_t raw[4]; /**< raw UMP packet */ -- 2.47.1