Kaydet (Commit) 94227ec3 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wformat

Change-Id: If251feecff0cef5af4cb8f28cc40f7cf65fc55ab
üst ddf30fb6
...@@ -709,7 +709,7 @@ OUString SAL_CALL SvxShowCharSetItemAcc::getAccessibleDescription() ...@@ -709,7 +709,7 @@ OUString SAL_CALL SvxShowCharSetItemAcc::getAccessibleDescription()
c_Shifted >>= 4; c_Shifted >>= 4;
} }
if( c < 256 ) 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); sDescription += " " + OUString(buf, strlen(buf), RTL_TEXTENCODING_ASCII_US);
return sDescription; return sDescription;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment