mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
merge from amd64 branch
39059 ssprintf.cpp/xml.cpp: Fix compilation for gcc 4.4.0 and 64bits (Samuel Serapión) svn path=/trunk/; revision=39418
This commit is contained in:
@@ -1556,7 +1556,7 @@ ssvprintf ( const char *fmt, va_list args )
|
||||
flags |= ZEROPAD;
|
||||
}
|
||||
result = number(f,
|
||||
(unsigned long) va_arg(args, void *), 16,
|
||||
(size_t) va_arg(args, void *), 16,
|
||||
field_width, precision, flags);
|
||||
if (result < 0)
|
||||
{
|
||||
@@ -1880,7 +1880,7 @@ sswvprintf ( const wchar_t* fmt, va_list args )
|
||||
flags |= ZEROPAD;
|
||||
}
|
||||
result = wnumber(f,
|
||||
(unsigned long) va_arg(args, void *), 16,
|
||||
(size_t) va_arg(args, void *), 16,
|
||||
field_width, precision, flags);
|
||||
if (result < 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user