From 6eddd1080f102a509ba846cb868e9fa969f27db1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E4=BD=B3=E5=92=8C?= Date: Wed, 1 Jul 2026 15:25:03 +0800 Subject: [PATCH] avb-pcm: fix typo in error log message --- spa/plugins/avb/avb-pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spa/plugins/avb/avb-pcm.c b/spa/plugins/avb/avb-pcm.c index 019e5b85a..cc04364e9 100644 --- a/spa/plugins/avb/avb-pcm.c +++ b/spa/plugins/avb/avb-pcm.c @@ -890,7 +890,7 @@ static int flush_write(struct state *state, uint64_t current_time) n = sendmsg(state->sockfd, &state->msg, MSG_NOSIGNAL); if (n < 0 || n != (ssize_t)state->pdu_size) { - spa_log_error(state->log, "sendmdg() failed: %m"); + spa_log_error(state->log, "sendmsg() failed: %m"); } txtime += state->pdu_period; ptime += state->pdu_period;