pkg://wine-20000725-2.src.rpm:4272490/wine-20000725-gcc296.patch
info downloads
--- wine/misc/wsprintf.c.gcc296 Tue Jul 25 20:09:49 2000
+++ wine/misc/wsprintf.c Tue Jul 25 20:10:18 2000
@@ -264,13 +264,13 @@
switch(format->type)
{
case WPR_WCHAR:
- result.wchar_view = va_arg( *args, WCHAR ); break;
+ result.wchar_view = (WCHAR)va_arg( *args, int ); break;
case WPR_CHAR:
- result.char_view = va_arg( *args, CHAR ); break;
+ result.char_view = (CHAR)va_arg( *args, int ); break;
case WPR_STRING:
- result.lpcstr_view = va_arg( *args, LPCSTR); break;
+ result.lpcstr_view = va_arg( *args, LPCSTR); break;
case WPR_WSTRING:
- result.lpcwstr_view = va_arg( *args, LPCWSTR); break;
+ result.lpcwstr_view = va_arg( *args, LPCWSTR); break;
case WPR_HEXA:
case WPR_SIGNED:
case WPR_UNSIGNED: