repository_plist.c: fix lp bug #494905 "xbps build failure on x86_64".

fetchIO_read returns ssize_t not int, applied patch from submitter.
Thanks.

--HG--
extra : convert_revision : xtraeme%40gmail.com-20091210081328-cxkzuxjapaven6a3
This commit is contained in:
Juan RP 2009-12-10 09:13:28 +01:00
parent eb885bbcc2
commit 6c2a648510

View File

@ -54,7 +54,7 @@ fetch_archive_open(struct archive *a, void *client_data)
return 0;
}
static int
static ssize_t
fetch_archive_read(struct archive *a, void *client_data, const void **buf)
{
struct fetch_archive *f = client_data;