From e17889cdc75961e6d3f8353c598a398cb5f9c5b8 Mon Sep 17 00:00:00 2001 From: ache Date: Thu, 7 Feb 2019 00:44:46 +0100 Subject: Write contact list fix --- contactList.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contactList.c b/contactList.c index 4369926..d9935f0 100644 --- a/contactList.c +++ b/contactList.c @@ -180,7 +180,7 @@ int writeContactList(const char* filename) { } for( int i = 0 ; i < nbContacts ; i++) { - fprintf(file, "%s;;%s;;%s\n", contactList[i].name, contactList[i].display_name, contactList[i].number); + fprintf(file, "%s;%s;%s\n", contactList[i].name, contactList[i].display_name, contactList[i].number); } fclose(file); -- cgit v1.2.3