}
int
-parse_generic_option(int i, struct pci_access *pacc, char *optarg)
+parse_generic_option(int i, struct pci_access *pacc, char *arg)
{
switch (i)
{
#ifdef PCI_HAVE_PM_INTEL_CONF
case 'H':
- if (!strcmp(optarg, "1"))
+ if (!strcmp(arg, "1"))
pacc->method = PCI_ACCESS_I386_TYPE1;
- else if (!strcmp(optarg, "2"))
+ else if (!strcmp(arg, "2"))
pacc->method = PCI_ACCESS_I386_TYPE2;
else
- die("Unknown hardware configuration type %s", optarg);
+ die("Unknown hardware configuration type %s", arg);
break;
#endif
#ifdef PCI_HAVE_PM_DUMP
case 'F':
- pci_set_param(pacc, "dump.name", optarg);
+ pci_set_param(pacc, "dump.name", arg);
pacc->method = PCI_ACCESS_DUMP;
break;
#endif
case 'A':
- set_pci_method(pacc, optarg);
+ set_pci_method(pacc, arg);
break;
case 'G':
pacc->debugging++;
break;
case 'O':
- set_pci_option(pacc, optarg);
+ set_pci_option(pacc, arg);
break;
default:
return 0;
/*
* The PCI Utilities -- Declarations
*
- * Copyright (c) 1997--2016 Martin Mares <mj@ucw.cz>
+ * Copyright (c) 1997--2018 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
void *xmalloc(size_t howmuch);
void *xrealloc(void *ptr, size_t howmuch);
char *xstrdup(const char *str);
-int parse_generic_option(int i, struct pci_access *pacc, char *optarg);
+int parse_generic_option(int i, struct pci_access *pacc, char *arg);
#ifdef PCI_HAVE_PM_INTEL_CONF
#define GENOPT_INTEL "H:"