cam: options: Rename optional arg to prevent shadowing

The parseValue function is given the optarg directly from the getopt
library, but the function retains the same name.

This causes an shadowed variable of the global optarg variable to be
present in the parseValue function. While this is not harmful, rename it
to work towards disabling shadowed variables.

Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Kieran Bingham
2020-07-28 12:45:47 +01:00
parent 32d78a7bba
commit 732ea045f5

View File

@@ -77,7 +77,7 @@ void OptionsBase<T>::invalidate()
template<typename T>
bool OptionsBase<T>::parseValue(const T &opt, const Option &option,
const char *optarg)
const char *arg)
{
OptionValue value;
@@ -88,9 +88,9 @@ bool OptionsBase<T>::parseValue(const T &opt, const Option &option,
case OptionInteger:
unsigned int integer;
if (optarg) {
if (arg) {
char *endptr;
integer = strtoul(optarg, &endptr, 0);
integer = strtoul(arg, &endptr, 0);
if (*endptr != '\0')
return false;
} else {
@@ -101,12 +101,12 @@ bool OptionsBase<T>::parseValue(const T &opt, const Option &option,
break;
case OptionString:
value = OptionValue(optarg ? optarg : "");
value = OptionValue(arg ? arg : "");
break;
case OptionKeyValue:
KeyValueParser *kvParser = option.keyValueParser;
KeyValueParser::Options keyValues = kvParser->parse(optarg);
KeyValueParser::Options keyValues = kvParser->parse(arg);
if (!keyValues.valid())
return false;