summaryrefslogtreecommitdiff
path: root/src/apk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/apk.c')
-rw-r--r--src/apk.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/apk.c b/src/apk.c
index 6b3e700..ee51c79 100644
--- a/src/apk.c
+++ b/src/apk.c
@@ -547,8 +547,9 @@ int main(int argc, char **argv)
name = spec;
}
- if (apk_db_index_read(&db, apk_istream_from_file(AT_FDCWD, name.ptr), repo) != 0) {
- apk_error("Failed to open repository: " BLOB_FMT, BLOB_PRINTF(name));
+ r = apk_db_index_read(&db, apk_istream_from_file(AT_FDCWD, name.ptr), repo);
+ if (r != 0) {
+ apk_error("Failed to open repository " BLOB_FMT " : %s", BLOB_PRINTF(name), apk_error_str(r));
goto err;
}