1
0
Fork 0
mirror of https://github.com/deltachat/deltachat-core.git synced 2025-10-05 10:39:27 +02:00

one declaration per line

This commit is contained in:
B. Petersen 2018-07-04 15:09:36 +02:00
parent d518259885
commit 3540dd5010
3 changed files with 19 additions and 19 deletions

View file

@ -859,7 +859,8 @@ char* dc_create_id(void)
char* dc_create_dummy_references_mid()
{
char* msgid = dc_create_id(), *ret = NULL;
char* msgid = dc_create_id();
char* ret = NULL;
ret = dc_mprintf("Rf.%s@mr.thread", msgid);
free(msgid);
return ret;