diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-01 16:51:39 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-01 16:51:39 +0200 |
commit | e3c2e0fab67bbb812e8c693aab987fb5c374e5e0 (patch) | |
tree | b5853e3f7df7e3847c291ee5cce054204980f415 /oox | |
parent | 15a79a36b129d51972c02992248eae88715ddccf (diff) |
-Werror,-Wformat
Change-Id: Ie6fbcb1a11f47b54d3c697716b03f9891a1dea49
Diffstat (limited to 'oox')
-rw-r--r-- | oox/source/helper/propertymap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/helper/propertymap.cxx b/oox/source/helper/propertymap.cxx index 445125ec8af2..a7bace4d6a22 100644 --- a/oox/source/helper/propertymap.cxx +++ b/oox/source/helper/propertymap.cxx @@ -342,9 +342,9 @@ static void lclDumpAnyValue( Any value) } else if( value >>= aMatrix ) { fprintf (stderr,"Matrix\n%f %f %f\n%f %f %f\n%f %f %f\n", aMatrix.Line1.Column1, aMatrix.Line1.Column2, aMatrix.Line1.Column3, aMatrix.Line2.Column1, aMatrix.Line2.Column2, aMatrix.Line2.Column3, aMatrix.Line3.Column1, aMatrix.Line3.Column2, aMatrix.Line3.Column3); } 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 >>= uintValue ) - fprintf (stderr,"%d (hex: %x)\n", uintValue, uintValue); + fprintf (stderr,"%" SAL_PRIuUINT32 " (hex: %" SAL_PRIxUINT32 ")\n", uintValue, uintValue); else if( value >>= int16Value ) fprintf (stderr,"%d (hex: %x)\n", int16Value, int16Value); else if( value >>= uint16Value ) |