Skip to content

Commit

Permalink
OS-4972 mancheck error message could be more helpful
Browse files Browse the repository at this point in the history
  • Loading branch information
jjelinek committed Nov 19, 2015
1 parent 0a361f3 commit 4d38c60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/mancheck/main.c
Expand Up @@ -322,7 +322,7 @@ populate_shiplist(manifest_ent_t *me, void *arg)
case ME_TYPE_SYMLINK:
if (strncmp(me->me_name, cm_pdir, strlen(cm_pdir)) == 0) {
if (strset_add(mc->mc_shiplist, me->me_name) != 0) {
err(1, "strset_add failure");
err(1, "strset_add failure (%s)", me->me_name);
}
}
break;
Expand Down

0 comments on commit 4d38c60

Please sign in to comment.