diff options
author | readerreader <hrp@i.xcode.ro> | 2017-04-24 21:24:36 -0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2017-04-25 08:07:32 +0300 |
commit | f3a4272a02f808d9f0eb2559c4b327fa88756faf (patch) | |
tree | 2e7adf55f14e9f2654cfe5a764209bec4cf6560f /src | |
parent | 9fb2568aa7120781eec6d004cb2f4378b4115697 (diff) | |
download | apk-tools-f3a4272a02f808d9f0eb2559c4b327fa88756faf.tar.gz apk-tools-f3a4272a02f808d9f0eb2559c4b327fa88756faf.tar.bz2 apk-tools-f3a4272a02f808d9f0eb2559c4b327fa88756faf.tar.xz apk-tools-f3a4272a02f808d9f0eb2559c4b327fa88756faf.zip |
fetch: spell "its" properly in user visible message
Diffstat (limited to 'src')
-rw-r--r-- | src/fetch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fetch.c b/src/fetch.c index 4189ce1..847146f 100644 --- a/src/fetch.c +++ b/src/fetch.c @@ -212,7 +212,7 @@ static void mark_error(struct fetch_ctx *ctx, const char *match, struct apk_name if (strchr(match, '*') != NULL) return; - apk_message("%s: unable to select package (or it's dependencies)", name ? name->name : match); + apk_message("%s: unable to select package (or its dependencies)", name ? name->name : match); ctx->errors++; } |