diff --git a/programs/expand/expand.c b/programs/expand/expand.c index fe2b4a1c81e..18e36d77a6b 100644 --- a/programs/expand/expand.c +++ b/programs/expand/expand.c @@ -28,16 +28,16 @@ static int WINAPIV myprintf(const char* format, ...) { - __ms_va_list va; + va_list va; char tmp[8192]; DWORD w = 0; int len; - __ms_va_start(va, format); + va_start(va, format); len = vsnprintf(tmp, sizeof(tmp), format, va); if (len > 0) WriteFile(GetStdHandle(STD_ERROR_HANDLE), tmp, len, &w, NULL); - __ms_va_end(va); + va_end(va); return w; }