diff options
author | Mattias Andrée <maandree@kth.se> | 2021-04-12 13:37:59 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-04-12 13:37:59 +0200 |
commit | fa88a28e46b7ac2d3dcd1938e5e4708157d08b22 (patch) | |
tree | c3ca4f98374328f37d71d1079f9e1f7406ed84d8 /get-contact-groups.c | |
parent | Minor fix to set-contact-photos (diff) | |
download | contacts-fa88a28e46b7ac2d3dcd1938e5e4708157d08b22.tar.gz contacts-fa88a28e46b7ac2d3dcd1938e5e4708157d08b22.tar.bz2 contacts-fa88a28e46b7ac2d3dcd1938e5e4708157d08b22.tar.xz |
Deduplicate code and make some small improvements
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | get-contact-groups.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/get-contact-groups.c b/get-contact-groups.c index 35c898b..de71918 100644 --- a/get-contact-groups.c +++ b/get-contact-groups.c @@ -42,7 +42,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; } if (lookup_unassigned) { |