diff options
Diffstat (limited to '')
-rw-r--r-- | set-contact-gender.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/set-contact-gender.c b/set-contact-gender.c index b0b0258..70b9150 100644 --- a/set-contact-gender.c +++ b/set-contact-gender.c @@ -55,7 +55,8 @@ main(int argc, char *argv[]) for (; *argv; argv++) { if (libcontacts_load_contact(*argv, &contact, user)) { - weprintf("libcontacts_load_contact %s: %s\n", *argv, errno ? strerror(errno) : "contact file is malformatted"); + weprintf("libcontacts_load_contact %s: %s\n", *argv, + errno ? strerror(errno) : "contact file is malformatted"); ret = 1; continue; } |