Alexandre Julliard : winedbg: Use the standard va_list instead of __ms_va_list.

Alexandre Julliard julliard at winehq.org
Mon Oct 25 16:30:06 CDT 2021


Module: wine
Branch: master
Commit: 43e3e1e409225336dccc820983ade69010e35beb
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=43e3e1e409225336dccc820983ade69010e35beb

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Mon Oct 25 11:02:19 2021 +0200

winedbg: Use the standard va_list instead of __ms_va_list.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/winedbg/winedbg.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/programs/winedbg/winedbg.c b/programs/winedbg/winedbg.c
index 0a629e880fa..57c2eb82972 100644
--- a/programs/winedbg/winedbg.c
+++ b/programs/winedbg/winedbg.c
@@ -147,12 +147,12 @@ void	dbg_outputW(const WCHAR* buffer, int len)
 int WINAPIV dbg_printf(const char* format, ...)
 {
     static    char	buf[4*1024];
-    __ms_va_list valist;
+    va_list valist;
     int		len;
 
-    __ms_va_start(valist, format);
+    va_start(valist, format);
     len = vsnprintf(buf, sizeof(buf), format, valist);
-    __ms_va_end(valist);
+    va_end(valist);
 
     if (len <= -1 || len >= sizeof(buf)) 
     {




More information about the wine-cvs mailing list