Re: [1/2] user32: handle %I... formats in user32.wsprintf* (try 2)
18 Jul
2011
18 Jul
'11
9:55 a.m.
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
5262
Age (days ago)
5262
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard