diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2010-05-12 15:42:50 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2010-05-12 15:42:50 -0700 |
commit | 48adf677bf1ae8c7f1c0225cbe4920367d452388 (patch) | |
tree | 95c91dfb7958d941ab5a157767fe3ea3d14afd00 | |
parent | 60b8ae05578e3cfd04e9398b67c6f3f11fdd8918 (diff) | |
download | syslinux-48adf677bf1ae8c7f1c0225cbe4920367d452388.tar.gz syslinux-48adf677bf1ae8c7f1c0225cbe4920367d452388.tar.xz syslinux-48adf677bf1ae8c7f1c0225cbe4920367d452388.zip |
pcitest.c32: mark argc/argv used
Part of -Werror cleanup.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r-- | com32/modules/pcitest.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/com32/modules/pcitest.c b/com32/modules/pcitest.c index ac3e5616..672023ad 100644 --- a/com32/modules/pcitest.c +++ b/com32/modules/pcitest.c @@ -105,6 +105,9 @@ int main(int argc, char *argv[]) int return_code = 0; int nb_pci_devices = 0; + (void)argc; + (void)argv; + openconsole(&dev_stdcon_r, &dev_stdcon_w); /* Scanning to detect pci buses and devices */ |