summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-07 21:34:35 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-07 21:34:35 +0100
commit94227ec32e4736d4a85e4d82be195eaef5ce45f1 (patch)
tree650f508ce244c64632fc66d25a215f5fd22942bb /svx
parentddf30fb628c7fa5834eeb4169ac605e119723afe (diff)
-Werror,-Wformat
Change-Id: If251feecff0cef5af4cb8f28cc40f7cf65fc55ab
Diffstat (limited to 'svx')
-rw-r--r--svx/source/accessibility/charmapacc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/accessibility/charmapacc.cxx b/svx/source/accessibility/charmapacc.cxx
index 36f493f42dd5..4068de0245fb 100644
--- a/svx/source/accessibility/charmapacc.cxx
+++ b/svx/source/accessibility/charmapacc.cxx
@@ -709,7 +709,7 @@ OUString SAL_CALL SvxShowCharSetItemAcc::getAccessibleDescription()
c_Shifted >>= 4;
}
if( c < 256 )
- snprintf( buf+6, 10, " (%d)", c );
+ snprintf( buf+6, 10, " (%" SAL_PRIuUINT32 ")", c );
sDescription += " " + OUString(buf, strlen(buf), RTL_TEXTENCODING_ASCII_US);
return sDescription;