summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-02-02 04:44:30 +0100
committerdefault <nobody@localhost>2023-02-02 04:44:30 +0100
commitee77e45abbcdb51536ba8c1209bf0de7a2a2ab10 (patch)
treef4afea9497e3122eb41062552fae34d7d666dc19 /activitypub.c
parent56c4711caf99ccc7e3297a2cb4a867998c3e3cae (diff)
dequeue() does not need a snac argument.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index ba6e45e..bd99c26 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -1169,7 +1169,7 @@ void process_queue(snac *snac)
xs_str *fn;
while (xs_list_iter(&p, &fn)) {
- xs *q_item = dequeue(snac, fn);
+ xs *q_item = dequeue(fn);
if (q_item == NULL) {
snac_log(snac, xs_fmt("process_queue q_item error"));