From f5c0b0d3168d6c34010f86a4b6878b7181d10237 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 29 Jan 2013 23:26:51 +0100 Subject: ArchiveFile: convert to a class --- src/input/ArchiveInputPlugin.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/input/ArchiveInputPlugin.cxx') diff --git a/src/input/ArchiveInputPlugin.cxx b/src/input/ArchiveInputPlugin.cxx index 01a854523..fde817da7 100644 --- a/src/input/ArchiveInputPlugin.cxx +++ b/src/input/ArchiveInputPlugin.cxx @@ -40,7 +40,6 @@ input_archive_open(const char *pathname, GError **error_r) { const struct archive_plugin *arplug; - struct archive_file *file; char *archive, *filename, *suffix, *pname; struct input_stream *is; @@ -63,7 +62,7 @@ input_archive_open(const char *pathname, return NULL; } - file = archive_file_open(arplug, archive, error_r); + auto file = archive_file_open(arplug, archive, error_r); if (file == NULL) { g_free(pname); return NULL; -- cgit v1.2.3