plug-ins: remove unused variable in file-tiff-load.c

This commit is contained in:
Michael Natterer
2012-02-05 22:28:55 +01:00
parent 1b34c9220c
commit 3c240bcb3c

View File

@ -397,12 +397,12 @@ tiff_warning (const gchar *module,
if (! strcmp (fmt, "%s: unknown field with tag %d (0x%x) encountered"))
{
const char *name;
va_list ap_test;
va_list ap_test;
G_VA_COPY (ap_test, ap);
name = va_arg (ap_test, const char *);
va_arg (ap_test, const char *); /* ignore first arg */
tag = va_arg (ap_test, int);
}
/* for older versions of libtiff? */