From bd6a22920a4452f69b90082d37e3dd6f97b09b85 Mon Sep 17 00:00:00 2001 From: Olaf Wintermann Date: Wed, 25 Mar 2026 20:57:07 +0100 Subject: [PATCH] fix comparison fail --- application/store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/store.c b/application/store.c index b5734a9..4a151d9 100644 --- a/application/store.c +++ b/application/store.c @@ -404,7 +404,7 @@ void note_store_remove_listener(void *userdata) { if(current_store) { CxIterator i = cxListIterator(current_store->listener); cx_foreach(NoteStoreListener *, ls, i) { - if(ls->userdata = userdata) { + if(ls->userdata == userdata) { cxIteratorFlagRemoval(i); } } -- 2.47.3