[Bug 39580] error using va_start() macro

wine-bugs at winehq.org wine-bugs at winehq.org
Thu Nov 12 22:41:37 CST 2015


https://bugs.winehq.org/show_bug.cgi?id=39580

--- Comment #1 from Sergey Isakov <isakov-sl at bk.ru> ---
Resolved by

~~~
#ifdef __LP64__
    __builtin_ms_va_list vl;
#else
    va_list vl;
#endif


...

#ifdef __LP64__
    __builtin_ms_va_start(vl, lpOptions);
#else
    va_start(vl, lpOptions);
#endif

...


Is it good workaround?

-- 
Do not reply to this email, post in Bugzilla using the
above URL to reply.
You are receiving this mail because:
You are watching all bug changes.



More information about the wine-bugs mailing list