mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-31 20:26:20 +00:00
fix: Correct function signature for unittests
Found as LTO type-mismatch.
This commit is contained in:
@@ -9,7 +9,7 @@ omemo_init(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char*
|
char*
|
||||||
omemo_fingerprint_autocomplete(const char* const search_str, gboolean previous)
|
omemo_fingerprint_autocomplete(const char* const search_str, gboolean previous, void* context)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
@@ -64,7 +64,7 @@ omemo_on_disconnect(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
char*
|
char*
|
||||||
omemo_on_message_send(ProfWin* win, const char* const message, gboolean request_receipt, gboolean muc)
|
omemo_on_message_send(ProfWin* win, const char* const message, gboolean request_receipt, gboolean muc, const char* const replace_id)
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user