aboutsummaryrefslogtreecommitdiff
path: root/src/input
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-01-29 23:26:51 +0100
committerMax Kellermann <max@duempel.org>2013-01-29 23:26:51 +0100
commitf5c0b0d3168d6c34010f86a4b6878b7181d10237 (patch)
tree50304ecc4ab8690c9283051268a393e87e3a9461 /src/input
parentba51045d9e85b8e48afed629d6d87ac3338acd46 (diff)
ArchiveFile: convert to a class
Diffstat (limited to 'src/input')
-rw-r--r--src/input/ArchiveInputPlugin.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/input/ArchiveInputPlugin.cxx b/src/input/ArchiveInputPlugin.cxx
index 01a85452..fde817da 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;