diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-12 14:22:41 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-12 14:22:41 +0200 |
commit | 8b55fd573a78a84cc375196f70fe77c995391fc8 (patch) | |
tree | ce8523f69c508e1fd7cf55f7a864375ba1296f21 /unblock-contact.c | |
parent | Fix set-contact-blocks and unblock-contact (diff) | |
download | contacts-8b55fd573a78a84cc375196f70fe77c995391fc8.tar.gz contacts-8b55fd573a78a84cc375196f70fe77c995391fc8.tar.bz2 contacts-8b55fd573a78a84cc375196f70fe77c995391fc8.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'unblock-contact.c')
-rw-r--r-- | unblock-contact.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unblock-contact.c b/unblock-contact.c index e16a97c..e582231 100644 --- a/unblock-contact.c +++ b/unblock-contact.c @@ -94,7 +94,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; } |