diff options
author | default <nobody@localhost> | 2023-01-11 20:40:13 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-01-11 20:40:13 +0100 |
commit | 75f8554e38dde34fca8981ad07c610980fb07321 (patch) | |
tree | e88fe6c3b390f6704d69422f7dfeebd80b4dd27e /main.c | |
parent | 1aac24ca756be5305f0895f7ebfc12a989773975 (diff) |
Deleted unused arguments in timeline_add().
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -292,7 +292,7 @@ int main(int argc, char *argv[]) enqueue_message(&snac, c_msg); - timeline_add(&snac, xs_dict_get(msg, "id"), msg, in_reply_to, NULL); + timeline_add(&snac, xs_dict_get(msg, "id"), msg); return 0; } |