diff options
author | Dan McGee <dan@archlinux.org> | 2008-04-06 20:09:27 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-04-06 20:16:57 -0500 |
commit | e4a4cf7ce544707faa691c8ab1bf298549979b12 (patch) | |
tree | 8c82329fb1f70ed8ed3487a67f8e32bb9cd5e5f6 /lib/libalpm/util.c | |
parent | 4004bf9caf60231e9ad008f36325412bd20a611c (diff) | |
download | pacman-e4a4cf7ce544707faa691c8ab1bf298549979b12.tar.xz |
libalpm error cleanup, step 1
Remove unused error codes, begin refactoring some of the others.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r-- | lib/libalpm/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index 7de5b069..1e94190a 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -382,7 +382,7 @@ int _alpm_unpack(const char *archive, const char *prefix, const char *fn) ALPM_LOG_FUNC; if((_archive = archive_read_new()) == NULL) - RET_ERR(PM_ERR_LIBARCHIVE_ERROR, -1); + RET_ERR(PM_ERR_LIBARCHIVE, -1); archive_read_support_compression_all(_archive); archive_read_support_format_all(_archive); |