run cargo fmt

This commit is contained in:
jikstra
2019-08-07 21:41:25 +02:00
parent 183cb08bee
commit 05b47d8dcb

View File

@@ -1409,8 +1409,7 @@ unsafe fn create_or_lookup_adhoc_group(
) )
.strdup(); .strdup();
} }
chat_id = chat_id = create_group_record(context, grpid, grpname, create_blocked, 0);
create_group_record(context, grpid, grpname, create_blocked, 0);
chat_id_blocked = create_blocked; chat_id_blocked = create_blocked;
i = 0; i = 0;
while i < dc_array_get_cnt(member_ids) { while i < dc_array_get_cnt(member_ids) {
@@ -1421,11 +1420,7 @@ unsafe fn create_or_lookup_adhoc_group(
); );
i += 1 i += 1
} }
context.call_cb( context.call_cb(Event::CHAT_MODIFIED, chat_id as uintptr_t, 0 as uintptr_t);
Event::CHAT_MODIFIED,
chat_id as uintptr_t,
0 as uintptr_t,
);
} }
} }
} }