From ec73f5522ff2d6f8c476f02a9daaff32ef1db069 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 30 Jan 2010 15:32:08 -0500 Subject: Coding style and whitespace cleanup. --- addressbook/importers/evolution-ldif-importer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'addressbook/importers') diff --git a/addressbook/importers/evolution-ldif-importer.c b/addressbook/importers/evolution-ldif-importer.c index 5f5c40ee13..41dda05a40 100644 --- a/addressbook/importers/evolution-ldif-importer.c +++ b/addressbook/importers/evolution-ldif-importer.c @@ -136,7 +136,7 @@ getValue( gchar **src ) gboolean need_base64 = (*s == ':'); copy_line: - while ( *s != 0 && *s != '\n' && *s != '\r' ) + while (*s != 0 && *s != '\n' && *s != '\r') dest = g_string_append_c (dest, *s++); if (*s == '\r') s++; @@ -249,7 +249,7 @@ parseLine (LDIFImporter *gci, EContact *contact, } /* first, check for a 'continuation' line */ - if ( ptr[0] == ' ' && ptr[1] != '\n' ) { + if (ptr[0] == ' ' && ptr[1] != '\n') { g_warning ("unexpected continuation line"); return FALSE; } @@ -260,7 +260,7 @@ parseLine (LDIFImporter *gci, EContact *contact, *colon = 0; value = colon + 1; - while ( isspace(*value) ) + while (isspace(*value)) value++; ldif_value = getValue(&value ); -- cgit v1.2.3