aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-02-07 00:44:46 +0100
committerache <ache@ache.one>2019-02-07 00:44:46 +0100
commite17889cdc75961e6d3f8353c598a398cb5f9c5b8 (patch)
treef22697b91e654c332843d1aff7f855f083be0316
parentFix UTF-8 problem (diff)
Write contact list fix
-rw-r--r--contactList.c2
1 files changed, 1 insertions, 1 deletions
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);