diff options
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | src/common_device_name.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 528e32b..34470eb 100644 --- a/configure.ac +++ b/configure.ac @@ -44,7 +44,7 @@ AC_ARG_WITH(pciids-path, AC_HELP_STRING([--with-pciids-path=PCIIDS_PATH], AC_DEFINE_DIR(PCIIDS_PATH, pciids_path, [Path to pci.ids]) AC_ARG_ENABLE(linux-rom-fallback, AS_HELP_STRING([--enable-linux-rom-fallback], - [Enable support for falling back to /dev/mem for roms (default: enabled)]), + [Enable support for falling back to /dev/mem for roms (default: disabled)]), [LINUX_ROM=$enableval],[LINUX_ROM=no]) if test "x$LINUX_ROM" = xyes; then diff --git a/src/common_device_name.c b/src/common_device_name.c index be601ed..896a8a3 100644 --- a/src/common_device_name.c +++ b/src/common_device_name.c @@ -55,7 +55,7 @@ typedef gzFile pci_id_file; static pci_id_file -pci_id_file_open() +pci_id_file_open(void) { pci_id_file result; |