diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-05-28 05:41:36 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-05-28 05:41:36 +0000 |
commit | 9325eb721d123bbcb51f0cd838fbe7dc54bc77bb (patch) | |
tree | 0da6be44c89e7dd3a0b21755fe8da2deaa2b7635 | |
parent | 3eb0a0aaa49961b046cfaed38eb27f61b702d647 (diff) | |
download | apk-tools-9325eb721d123bbcb51f0cd838fbe7dc54bc77bb.tar.gz apk-tools-9325eb721d123bbcb51f0cd838fbe7dc54bc77bb.tar.bz2 apk-tools-9325eb721d123bbcb51f0cd838fbe7dc54bc77bb.tar.xz apk-tools-9325eb721d123bbcb51f0cd838fbe7dc54bc77bb.zip |
index: fix unsatisfied dependencies warning (maybe vs may be)
-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 344f35f..1c39e3c 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); |