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

Alexandre Julliard julliard at winehq.org
Fri Oct 22 14:46:11 CDT 2021


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Oct 22 11:12:29 2021 +0200

riched20: Use the standard va_list instead of __ms_va_list.

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

---

 dlls/riched20/writer.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/riched20/writer.c b/dlls/riched20/writer.c
index 7c7e648f107..d6c687daab9 100644
--- a/dlls/riched20/writer.c
+++ b/dlls/riched20/writer.c
@@ -125,11 +125,11 @@ ME_StreamOutPrint(ME_OutStream *pStream, const char *format, ...)
 {
   char string[STREAMOUT_BUFFER_SIZE]; /* This is going to be enough */
   int len;
-  __ms_va_list valist;
+  va_list valist;
 
-  __ms_va_start(valist, format);
+  va_start(valist, format);
   len = vsnprintf(string, sizeof(string), format, valist);
-  __ms_va_end(valist);
+  va_end(valist);
 
   return ME_StreamOutMove(pStream, string, len);
 }




More information about the wine-cvs mailing list