diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-05-28 05:41:36 +0000 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-10-06 16:17:42 +0300 |
commit | 9852819ffd71fe7d2df3665c339bbe9b2371f272 (patch) | |
tree | c8ffd6dc0d718bc1aae439f0b46f8f73c487462f | |
parent | 493a9c03951303a305e2545b9a2dbf8f0176e845 (diff) | |
download | apk-tools-9852819ffd71fe7d2df3665c339bbe9b2371f272.tar.gz apk-tools-9852819ffd71fe7d2df3665c339bbe9b2371f272.tar.bz2 apk-tools-9852819ffd71fe7d2df3665c339bbe9b2371f272.tar.xz apk-tools-9852819ffd71fe7d2df3665c339bbe9b2371f272.zip |
index: fix unsatisfied dependencies warning (maybe vs may be)
(cherry picked from commit 9325eb721d123bbcb51f0cd838fbe7dc54bc77bb)
-rw-r--r-- | src/index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.c b/src/index.c index 1ad41ca..45d371b 100644 --- a/src/index.c +++ b/src/index.c @@ -249,7 +249,7 @@ static int index_main(void *ctx, struct apk_database *db, struct apk_string_arra if (counts.unsatisfied != 0) apk_warning("Total of %d unsatisfiable package " - "names. Your repository maybe broken.", + "names. Your repository may be broken.", counts.unsatisfied); apk_message("Index has %d packages (of which %d are new)", total, newpkgs); |