Remove unused variable to fix warning

This commit is contained in:
Bill Hoffman 2009-10-30 17:10:09 -04:00
parent 7b22ab1990
commit 7ff27819de
1 changed files with 2 additions and 1 deletions

View File

@ -477,9 +477,10 @@ archive_read_format_iso9660_options(struct archive_read *a,
}
static int
isVDSetTerminator(struct iso9660 *, const unsigned char *h)
isVDSetTerminator(struct iso9660 *iso9660, const unsigned char *h)
{
int i;
(void)iso9660;
/* Type of the Volume Descriptor Set Terminator must be 255. */
if (h[0] != 255)