diff options
author | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-09-09 00:51:36 +0200 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@gmx.de> | 2013-09-09 00:51:36 +0200 |
commit | 6c5deb9b50cc57bbc3874b9eb2da53c89c015273 (patch) | |
tree | d2a0f2195a2255b4d228b05fa2f50f5428476afd | |
parent | 8aff0e5be65f795b8982bef7a1ec327ed8f114bf (diff) |
pci: fix compiler warning about unused variables
-rw-r--r-- | sys/src/9/pc/pci.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/pc/pci.c b/sys/src/9/pc/pci.c index e19608269..ac9e6e91e 100644 --- a/sys/src/9/pc/pci.c +++ b/sys/src/9/pc/pci.c @@ -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; } |