summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2011-03-18 12:50:55 +0900
committerTakeshi Abe <tabe@fixedpoint.jp>2011-03-18 12:50:55 +0900
commit005b11645a3438fd519a101a043f24a40ea47c02 (patch)
tree0487ab213467d36422dbc523e286e7ab86228c5a /oox
parent866364d7cb08b6a7d7f71f0d43e6765d8c32dd4c (diff)
Use SAL_PRIdINT32/SAL_PRIxUINT32 instead of %d/%x
Diffstat (limited to 'oox')
-rw-r--r--oox/source/export/drawingml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/export/drawingml.cxx b/oox/source/export/drawingml.cxx
index 99813bef2769..5b44b4a5a3e3 100644
--- a/oox/source/export/drawingml.cxx
+++ b/oox/source/export/drawingml.cxx
@@ -138,7 +138,7 @@ void lcl_dump_pset(Reference< XPropertySet > rXPropSet)
if( value >>= strValue )
fprintf (stderr,"\"%s\"\n", USS( strValue ) );
else if( value >>= intValue )
- fprintf (stderr,"%d (hex: %x)\n", intValue, intValue);
+ fprintf (stderr,"%" SAL_PRIdINT32 " (hex: %" SAL_PRIxUINT32 ")\n", intValue, intValue);
else if( value >>= boolValue )
fprintf (stderr,"%d (bool)\n", boolValue);
else if( value >>= spacing ) {