winbuild: fix int argc for main()

- fix compile error requiring first arg of main() to be of type int
This commit is contained in:
Christophe Chevalier 2021-01-30 15:10:15 +01:00
parent f59b2b238f
commit 89735f7eda
1 changed files with 1 additions and 1 deletions

View File

@ -838,7 +838,7 @@ void print_usage(const char *name) {
" -h, --help Display this help and exit.\n", name);
}
int main(DWORD argc, LPCSTR *argv) {
int main(int argc, LPCSTR *argv) {
_set_FMA3_enable(0); // Workaround for VS 2013 code generation bug. See https://connect.microsoft.com/VisualStudio/feedback/details/811093/visual-studio-2013-rtm-c-x64-code-generation-bug-for-avx2-instructions
int status = 0;