SWDEV-1 - Fix getopt for options that don't have colon

Change-Id: Ibb8907e23294bfa033bdefb243ddac35574983b0


[ROCm/clr commit: aba8b08701]
This commit is contained in:
Jason Tang
2021-11-22 15:51:28 -05:00
parent 92e972eae3
commit 244fb0defd
+2 -1
View File
@@ -42,7 +42,8 @@ int getopt(int argc, char *const argv[], const char *optstring) {
return '?';
}
optarg = argv[optind];
optind++;
}
optind++;
return opt;
}