diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-07-10 10:18:24 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-07-10 10:18:24 +0200 |
commit | 859d10e7abab03cb35f2081e979a407cfe120d20 (patch) | |
tree | 42868fcb8f8fc2cc5bc3b92fd3e834484b2c7ccc /sax | |
parent | c60e9ceaf2564ec3a8005aad84bbef0cf211e5ec (diff) |
Bulid fix: use SAL_PRIxUINT32 format string
Diffstat (limited to 'sax')
-rw-r--r-- | sax/test/testcomponent.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/test/testcomponent.cxx b/sax/test/testcomponent.cxx index e395add9f662..6d7ff0f03c86 100644 --- a/sax/test/testcomponent.cxx +++ b/sax/test/testcomponent.cxx @@ -195,7 +195,7 @@ int main (int argc, char **argv) Sequence<OUString> seqWarnings = xTest->getWarnings(); if( seqWarnings.getLength() > nWarningCount ) { - printf( "Warnings during test %d!\n" , nHandle ); + printf( "Warnings during test %" SAL_PRIxUINT32 "!\n" , nHandle ); for( ; nWarningCount < seqWarnings.getLength() ; nWarningCount ++ ) { OString o = OUStringToOString( @@ -206,7 +206,7 @@ int main (int argc, char **argv) if( seqErrors.getLength() > nErrorCount ) { - printf( "Errors during test %d!\n" , nHandle ); + printf( "Errors during test %" SAL_PRIxUINT32 "!\n" , nHandle ); for( ; nErrorCount < seqErrors.getLength() ; nErrorCount ++ ) { OString o = OUStringToOString( seqErrors.getArray()[nErrorCount], RTL_TEXTENCODING_ASCII_US ); |