Remove unused variable to fix warning
This commit is contained in:
parent
7b22ab1990
commit
7ff27819de
|
@ -477,9 +477,10 @@ archive_read_format_iso9660_options(struct archive_read *a,
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
isVDSetTerminator(struct iso9660 *, const unsigned char *h)
|
isVDSetTerminator(struct iso9660 *iso9660, const unsigned char *h)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
(void)iso9660;
|
||||||
|
|
||||||
/* Type of the Volume Descriptor Set Terminator must be 255. */
|
/* Type of the Volume Descriptor Set Terminator must be 255. */
|
||||||
if (h[0] != 255)
|
if (h[0] != 255)
|
||||||
|
|
Loading…
Reference in New Issue