diff options
Diffstat (limited to 'src/index.c')
-rw-r--r-- | src/index.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/index.c b/src/index.c index 1c39e3c..45d371b 100644 --- a/src/index.c +++ b/src/index.c @@ -215,7 +215,7 @@ static int index_main(void *ctx, struct apk_database *db, struct apk_string_arra fi.name = "APKINDEX"; counter = apk_ostream_counter(&fi.size); r = apk_db_index_write(db, counter); - counter->close(counter); + apk_ostream_close(counter); if (r >= 0) { os = apk_ostream_gzip(os); @@ -237,7 +237,7 @@ static int index_main(void *ctx, struct apk_database *db, struct apk_string_arra } else { r = apk_db_index_write(db, os); } - os->close(os); + apk_ostream_close(os); if (r < 0) { apk_error("Index generation failed: %s", apk_error_str(r)); |