WaE: format specifies type 'int' but the argument has type 'sal_uInt32'

Change-Id: Id5f8253f1d72f9bb6f56d354293ccdedf44239d2
This commit is contained in:
Tor Lillqvist
2013-04-19 00:23:07 +03:00
parent d933b18fdd
commit 382fa3db43

View File

@@ -49,7 +49,7 @@ static OString lcl_DateTimeToOString( const DateTime& rDateTime )
{
char sBuf[ 200 ];
snprintf( sBuf, sizeof( sBuf ),
"%d-%02d-%02dT%02d:%02d:%02d.%09dZ",
"%d-%02d-%02dT%02d:%02d:%02d.%09" SAL_PRIuUINT32 "Z",
rDateTime.GetYear(), rDateTime.GetMonth(), rDateTime.GetDay(),
rDateTime.GetHour(), rDateTime.GetMin(), rDateTime.GetSec(),
rDateTime.GetNanoSec() );