diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-19 00:23:07 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-19 00:23:07 +0300 |
commit | 382fa3db431ff2e227e99591ac74c91fb8da9a6e (patch) | |
tree | 639e690b3d9da8539857104cde83c8c902bc7921 | |
parent | d933b18fddf2f3f716dede322c3541d7d37bd540 (diff) |
WaE: format specifies type 'int' but the argument has type 'sal_uInt32'
Change-Id: Id5f8253f1d72f9bb6f56d354293ccdedf44239d2
-rw-r--r-- | sc/source/filter/xcl97/XclExpChangeTrack.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xcl97/XclExpChangeTrack.cxx b/sc/source/filter/xcl97/XclExpChangeTrack.cxx index 708d7642e853..5e37df0c674b 100644 --- a/sc/source/filter/xcl97/XclExpChangeTrack.cxx +++ b/sc/source/filter/xcl97/XclExpChangeTrack.cxx @@ -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() ); |