summaryrefslogtreecommitdiff
path: root/data.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-12-10 17:50:03 +0100
committerdefault <nobody@localhost>2023-12-10 17:50:03 +0100
commit09b926c16847d88e97bfba1ce239206a7bfd19bb (patch)
tree75f8853aacbefeef76b0cd96475fc41fbd971c81 /data.c
parent0e6c5f9463d7800b40b777af50c6c09ee3d97af2 (diff)
More functions do not require the user argument.
Diffstat (limited to 'data.c')
-rw-r--r--data.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/data.c b/data.c
index b62a1c1..06e7d74 100644
--- a/data.c
+++ b/data.c
@@ -2186,7 +2186,7 @@ void enqueue_output(snac *snac, xs_dict *msg, xs_str *inbox, int retries, int p_
void enqueue_output_by_actor(snac *snac, xs_dict *msg, const xs_str *actor, int retries)
/* enqueues an output message for an actor */
{
- xs *inbox = get_actor_inbox(snac, actor);
+ xs *inbox = get_actor_inbox(actor);
if (!xs_is_null(inbox))
enqueue_output(snac, msg, inbox, retries, 0);