forked from ariadne/pkgconf
getopt_long.c: placate visual c by adding a few explicit typecasts
parent
347539ca87
commit
9131496d64
|
@ -287,7 +287,7 @@ parse_long_options(char * const *nargv, const char *options,
|
||||||
* XXX: GNU sets pkg_optopt to val regardless of flag
|
* XXX: GNU sets pkg_optopt to val regardless of flag
|
||||||
*/
|
*/
|
||||||
if (long_options[match].flag == NULL)
|
if (long_options[match].flag == NULL)
|
||||||
pkg_optopt = long_options[match].val;
|
pkg_optopt = (int)long_options[match].val;
|
||||||
else
|
else
|
||||||
pkg_optopt = 0;
|
pkg_optopt = 0;
|
||||||
#ifdef GNU_COMPATIBLE
|
#ifdef GNU_COMPATIBLE
|
||||||
|
@ -327,7 +327,7 @@ parse_long_options(char * const *nargv, const char *options,
|
||||||
* XXX: GNU sets pkg_optopt to val regardless of flag
|
* XXX: GNU sets pkg_optopt to val regardless of flag
|
||||||
*/
|
*/
|
||||||
if (long_options[match].flag == NULL)
|
if (long_options[match].flag == NULL)
|
||||||
pkg_optopt = long_options[match].val;
|
pkg_optopt = (int)long_options[match].val;
|
||||||
else
|
else
|
||||||
pkg_optopt = 0;
|
pkg_optopt = 0;
|
||||||
--pkg_optind;
|
--pkg_optind;
|
||||||
|
@ -360,7 +360,7 @@ parse_long_options(char * const *nargv, const char *options,
|
||||||
#endif
|
#endif
|
||||||
return (0);
|
return (0);
|
||||||
} else
|
} else
|
||||||
return (long_options[match].val);
|
return ((int)long_options[match].val);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue