diff options
Diffstat (limited to 'src/TagArchive.cxx')
-rw-r--r-- | src/TagArchive.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TagArchive.cxx b/src/TagArchive.cxx index ce0f2ed39..a2d014d52 100644 --- a/src/TagArchive.cxx +++ b/src/TagArchive.cxx @@ -25,7 +25,7 @@ bool tag_archive_scan(ArchiveFile &archive, const char *path_utf8, - const TagHandler &handler, void *handler_ctx) noexcept + TagHandler &handler) noexcept try { Mutex mutex; @@ -33,7 +33,7 @@ try { if (!is) return false; - return tag_stream_scan(*is, handler, handler_ctx); + return tag_stream_scan(*is, handler); } catch (const std::exception &e) { return false; } |