Skip to content

Commit 759e583

Browse files
committed
fix: Correct function signature for unittests
Found as LTO type-mismatch.
1 parent f1acf70 commit 759e583

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unittests/omemo/stub_omemo.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ omemo_init(void)
99
}
1010

1111
char*
12-
omemo_fingerprint_autocomplete(const char* const search_str, gboolean previous)
12+
omemo_fingerprint_autocomplete(const char* const search_str, gboolean previous, void* context)
1313
{
1414
return NULL;
1515
}
@@ -64,7 +64,7 @@ omemo_on_disconnect(void)
6464
}
6565

6666
char*
67-
omemo_on_message_send(ProfWin* win, const char* const message, gboolean request_receipt, gboolean muc)
67+
omemo_on_message_send(ProfWin* win, const char* const message, gboolean request_receipt, gboolean muc, const char* const replace_id)
6868
{
6969
return NULL;
7070
}

0 commit comments

Comments
 (0)