diff --git a/obexd/plugins/phonebook-ebook.c b/obexd/plugins/phonebook-ebook.c
index f475621..b25ce25 100644
--- a/obexd/plugins/phonebook-ebook.c
+++ b/obexd/plugins/phonebook-ebook.c
for (l = attrib_list; l; l = l->next) {
int i;
const char *attrib_name = e_vcard_attribute_get_name(
- (EVCardAttribute *)l->data);
+ (EVCardAttribute *) l->data);
for (i = 0; i <= 28; i++) {
int mask;
continue;
if (g_strcmp0(vcard_attribs[i], attrib_name))
continue;
- e_vcard_add_attribute(
- evcard_filtered,
- e_vcard_attribute_copy(
- (EVCardAttribute *)l->data));
+ e_vcard_add_attribute(evcard_filtered,
+ e_vcard_attribute_copy(
+ (EVCardAttribute *) l->data));
break;
}
}
for (l = attrib_list; l; l = l->next) {
int i;
const char *attrib_name = e_vcard_attribute_get_name(
- (EVCardAttribute *)l->data);
+ (EVCardAttribute *) l->data);
for (i = 0; i <= 28; i++) {
int mask;
if (g_strcmp0(vcard_attribs[i], attrib_name))
continue;
- e_vcard_add_attribute(
- evcard_filtered,
- e_vcard_attribute_copy(
- (EVCardAttribute *)l->data));
- break;
+ e_vcard_add_attribute(evcard_filtered,
+ e_vcard_attribute_copy(
+ (EVCardAttribute *) l->data));
+ break;
}
}
vcard = e_vcard_to_string(evcard_filtered, params->format);