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 /src/util/testpkg.c | |
parent | 4004bf9caf60231e9ad008f36325412bd20a611c (diff) |
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 'src/util/testpkg.c')
-rw-r--r-- | src/util/testpkg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/testpkg.c b/src/util/testpkg.c index 64056ce4..6e8f9d1c 100644 --- a/src/util/testpkg.c +++ b/src/util/testpkg.c @@ -63,7 +63,7 @@ int main(int argc, char **argv) case PM_ERR_PKG_OPEN: printf("Cannot open the given file.\n"); break; - case PM_ERR_LIBARCHIVE_ERROR: + case PM_ERR_LIBARCHIVE: case PM_ERR_PKG_INVALID: printf("Package is invalid.\n"); break; |