diff options
Diffstat (limited to 'e-util/e-pilot-map.c')
-rw-r--r-- | e-util/e-pilot-map.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/e-util/e-pilot-map.c b/e-util/e-pilot-map.c index 83517197fd..e557388352 100644 --- a/e-util/e-pilot-map.c +++ b/e-util/e-pilot-map.c @@ -53,7 +53,11 @@ typedef struct } EPilotMapWriteData; static void -real_e_pilot_map_insert (EPilotMap *map, guint32 pid, const gchar *uid, gboolean archived, gboolean touch) +real_e_pilot_map_insert (EPilotMap *map, + guint32 pid, + const gchar *uid, + gboolean archived, + gboolean touch) { gchar *new_uid; guint32 *new_pid = NULL; @@ -371,7 +375,9 @@ e_pilot_map_write (const gchar *filename, EPilotMap *map) g_warning ("Pilot map file could not be created\n"); return -1; } - xmlDocSetRootElement (doc, xmlNewDocNode(doc, NULL, (const guchar *)"PilotMap", NULL)); + xmlDocSetRootElement ( + doc, xmlNewDocNode ( + doc, NULL, (const guchar *)"PilotMap", NULL)); map->since = time (NULL); map_set_node_timet (xmlDocGetRootElement (doc), "timestamp", map->since); |