[1/2] user32: handle %I... formats in user32.wsprintf* (try 2)

Alexandre Julliard julliard at winehq.org
Mon Jul 18 04:55:29 CDT 2011


Dan Kegel <dank at kegel.com> writes:

> +    i64 = 0x100000000LL;

Don't use LL constants.

> @@ -257,14 +282,25 @@ static UINT WPRINTF_GetLen( WPRINTF_FORMAT *format, WPRINTF_DATA *arg,
>      case WPR_SIGNED:
>          len = sprintf( number, "%d", arg->int_view );
>          break;
> +    case WPR_SIGNED64:
> +        len = sprintf( number, "%lld", arg->int64_view );
> +        break;

Don't use %ll formats.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list