summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-10 10:18:24 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-10 10:18:24 +0200
commit859d10e7abab03cb35f2081e979a407cfe120d20 (patch)
tree42868fcb8f8fc2cc5bc3b92fd3e834484b2c7ccc /sax
parentc60e9ceaf2564ec3a8005aad84bbef0cf211e5ec (diff)
Bulid fix: use SAL_PRIxUINT32 format string
Diffstat (limited to 'sax')
-rw-r--r--sax/test/testcomponent.cxx4
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 );