The following changes since commit 60c52212520b905a1740d3c8815c34cc48471c5c: Merge branch 'master' of https://github.com/bvanassche/fio into master (2020-10-10 20:30:52 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 8cf503ce5956e4c287e13d5c7761a03fbb4b54cc: Merge branch 'patch-1' of https://github.com/chengli-rutgers/fio into master (2020-10-13 13:07:37 -0600) ---------------------------------------------------------------- Cheng Li (1): getopt_long: avoid variable global initialization Jens Axboe (1): Merge branch 'patch-1' of https://github.com/chengli-rutgers/fio into master oslib/getopt_long.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- Diff of recent changes: diff --git a/oslib/getopt_long.c b/oslib/getopt_long.c index 8ec77413..463919fb 100644 --- a/oslib/getopt_long.c +++ b/oslib/getopt_long.c @@ -16,8 +16,8 @@ #include "getopt.h" -char *optarg = NULL; -int optind = 0, opterr = 0, optopt = 0; +char *optarg; +int optind, opterr, optopt; static struct getopt_private_state { const char *optptr;