Kaydet (Commit) 803a7b65 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:redundantcast (clang-cl)

Change-Id: Iaf6cbe8dcfd107a66660746719b6b61e82a6ed0a
Reviewed-on: https://gerrit.libreoffice.org/57998
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst edb36ef2
......@@ -174,7 +174,7 @@ static inline void printLenArray(FILE* source_fp, const vector<sal_uInt32>& lenA
fputs("\n\t", source_fp);
#ifndef DICT_JA_ZH_IN_DATAFILE
fprintf(source_fp, "0x%lx, ", static_cast<long unsigned int>(lenArray[k]));
fprintf(source_fp, "0x%" SAL_PRIxUINT32 ", ", lenArray[k]);
#else
fwrite(&lenArray[k], sizeof(lenArray[k]), 1, source_fp);
#endif
......
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