diff --git a/obexd/plugins/vcard.c b/obexd/plugins/vcard.c
index 849e9bb..09f4f40 100644
--- a/obexd/plugins/vcard.c
+++ b/obexd/plugins/vcard.c
if ((type == TYPE_INTERNATIONAL) && (number[0] != '+'))
intl = "+";
- snprintf(buf, sizeof(buf), "TEL;%s:%s\%s", category_string, intl, number);
+ snprintf(buf, sizeof(buf), "TEL;%s:%s\%s", category_string,
+ intl, number);
vcard_printf(vcards, buf, number);
}
contact->department, contact->title);
}
-static void vcard_printf_adr(GString *vcards, struct phonebook_contact *contact)
+static void vcard_printf_adr(GString *vcards,
+ struct phonebook_contact *contact)
{
if (address_fields_present(contact) == FALSE) {
vcard_printf(vcards, "ADR:");
for (; l; l = l->next){
struct phonebook_email *email = l->data;
-
- vcard_printf_email(vcards, format, email->address, email->type);
+ vcard_printf_email(vcards, format, email->address,
+ email->type);
}
}
vcard_printf_adr(vcards, contact);
if (filter & FILTER_BDAY)
- vcard_printf_tag(vcards, format, "BDAY", NULL, contact->birthday);
+ vcard_printf_tag(vcards, format, "BDAY", NULL,
+ contact->birthday);
if (filter & FILTER_NICKNAME)
vcard_printf_slash_tag(vcards, format, "NICKNAME", NULL,
contact->website);
if (filter & FILTER_PHOTO)
- vcard_printf_tag(vcards, format, "PHOTO", NULL, contact->photo);
+ vcard_printf_tag(vcards, format, "PHOTO", NULL,
+ contact->photo);
if (filter & FILTER_ORG)
vcard_printf_org(vcards, contact);