From 5355671022506b7cba53be0790fc13506b067502 Mon Sep 17 00:00:00 2001 From: hackerman-kl Date: Sat, 25 Apr 2026 06:15:43 +0200 Subject: [PATCH] milan-avb: mrp: fix REG log notify label --- src/modules/module-avb/mrp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/modules/module-avb/mrp.c b/src/modules/module-avb/mrp.c index c9927613f..37cbada48 100644 --- a/src/modules/module-avb/mrp.c +++ b/src/modules/module-avb/mrp.c @@ -448,10 +448,10 @@ void avb_mrp_attribute_update_state(struct avb_mrp_attribute *attr, uint64_t now } if (a->registrar_state != state || notify) { - pw_log_debug("REG: attr %p: %s %s %s -> %s %s notify? %s", a, a->attr.name, + pw_log_debug("REG: attr %p: %s %s %s -> %s notify=%s", a, a->attr.name, avb_mrp_event_name(event), avb_registrar_state_name(a->registrar_state), - avb_registrar_state_name(state), avb_mrp_send_name(notify), - notify ? "YES":"NO"); + avb_registrar_state_name(state), + notify ? avb_mrp_notify_name(notify) : "none"); a->registrar_state = state; }