diff options
Diffstat (limited to 'src/commit.c')
-rw-r--r-- | src/commit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commit.c b/src/commit.c index b82607c..5a72ce4 100644 --- a/src/commit.c +++ b/src/commit.c @@ -540,7 +540,7 @@ static void analyze_name(struct print_state *ps, struct apk_name *name) } label_end(ps); } else { - snprintf(tmp, sizeof(tmp), "%s (missing)", name->name); + snprintf(tmp, sizeof(tmp), "%s (no such package)", name->name); ps->label = tmp; } @@ -637,7 +637,7 @@ void apk_solver_print_errors(struct apk_database *db, * any other selected version. or all of them with -v. */ - apk_error("unsatisfiable constraints:"); + apk_error("unable to select packages:"); /* Construct information about names */ foreach_array_item(change, changeset->changes) { |