ntdll: Use SIZE_T to store passed buffer size in sprintf.
Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
822e2773d4
commit
92731ccbbe
|
@ -43,8 +43,8 @@ static const SIZE_T size_max = ~(SIZE_T)0 >> 1;
|
|||
|
||||
typedef struct pf_output_t
|
||||
{
|
||||
int used;
|
||||
int len;
|
||||
SIZE_T used;
|
||||
SIZE_T len;
|
||||
BOOL unicode;
|
||||
union {
|
||||
LPWSTR W;
|
||||
|
@ -68,7 +68,7 @@ typedef struct pf_flags_t
|
|||
*/
|
||||
static inline int pf_output_stringW( pf_output *out, LPCWSTR str, int len )
|
||||
{
|
||||
int space = out->len - out->used;
|
||||
SIZE_T space = out->len - out->used;
|
||||
|
||||
if( len < 0 )
|
||||
len = strlenW( str );
|
||||
|
@ -122,7 +122,7 @@ static inline int pf_output_stringW( pf_output *out, LPCWSTR str, int len )
|
|||
|
||||
static inline int pf_output_stringA( pf_output *out, LPCSTR str, int len )
|
||||
{
|
||||
int space = out->len - out->used;
|
||||
SIZE_T space = out->len - out->used;
|
||||
|
||||
if( len < 0 )
|
||||
len = strlen( str );
|
||||
|
|
Loading…
Reference in New Issue