diff options
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/index.c b/src/index.c index e7ed0c3..a6f9cc4 100644 --- a/src/index.c +++ b/src/index.c @@ -145,7 +145,7 @@ static int index_main(void *ctx, struct apk_database *db, int argc, char **argv) for (j = 0; j < name->pkgs->num; j++) { struct apk_package *pkg = name->pkgs->item[j]; - if (apk_blob_compare(bver, APK_BLOB_STR(pkg->version)) != 0) + if (apk_blob_compare(bver, *pkg->version) != 0) continue; if (pkg->size != fi.size) continue; |