Dan Kegel <dank(a)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(a)winehq.org