From eb29179da623f9cf4abd663577395a085452ca18 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 11 Jul 2010 11:31:15 -0400 Subject: Coding style and whitespace cleanup. --- addressbook/importers/evolution-csv-importer.c | 2 +- addressbook/importers/evolution-ldif-importer.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'addressbook/importers') diff --git a/addressbook/importers/evolution-csv-importer.c b/addressbook/importers/evolution-csv-importer.c index 29204b2c2e..20025c81ec 100644 --- a/addressbook/importers/evolution-csv-importer.c +++ b/addressbook/importers/evolution-csv-importer.c @@ -671,7 +671,7 @@ getNextCSVEntry(CSVImporter *gci, FILE *f) { else g_string_append_c (line, c); } - gci->count ++; + gci->count++; } str = g_string_new(""); diff --git a/addressbook/importers/evolution-ldif-importer.c b/addressbook/importers/evolution-ldif-importer.c index 0e6b707426..9eb9ca5bb6 100644 --- a/addressbook/importers/evolution-ldif-importer.c +++ b/addressbook/importers/evolution-ldif-importer.c @@ -266,7 +266,7 @@ parseLine (GHashTable *dn_contact_hash, EContact *contact, ldif_value = getValue(&value ); field_handled = FALSE; - for (i = 0; i < G_N_ELEMENTS (ldif_fields); i ++) { + for (i = 0; i < G_N_ELEMENTS (ldif_fields); i++) { if (!g_ascii_strcasecmp (ptr, ldif_fields[i].ldif_attribute)) { if (ldif_fields[i].flags & FLAG_WORK_ADDRESS) { populate_contact_address (work_address, ptr, ldif_value->str); -- cgit