pci: fix compiler warning about unused variables

This commit is contained in:
cinap_lenrek 2013-09-09 00:51:36 +02:00
parent 8aff0e5be6
commit 6c5deb9b50

View file

@ -1454,9 +1454,8 @@ enumcaps(Pcidev *p, int (*fmatch)(Pcidev*, int, int, int), int arg)
}
static int
matchcap(Pcidev *p, int cap, int off, int arg)
matchcap(Pcidev *, int cap, int, int arg)
{
USED(off);
return cap != arg;
}