diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-01-31 04:32:08 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-01-31 07:09:19 +0800 |
commit | ec73f5522ff2d6f8c476f02a9daaff32ef1db069 (patch) | |
tree | 14729b8cbf271405e732b84ca2ca944ceb0815e5 /addressbook/importers | |
parent | c7e371bc5bc8d7898236ac36e1ea0bc08518b791 (diff) | |
download | gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.gz gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.bz2 gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.lz gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.xz gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.tar.zst gsoc2013-evolution-ec73f5522ff2d6f8c476f02a9daaff32ef1db069.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'addressbook/importers')
-rw-r--r-- | addressbook/importers/evolution-ldif-importer.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 ); |