diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-08-16 10:07:14 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-08-16 13:37:05 +0200 |
commit | 2dc14bee879903bd8824b0ca0ced2d48df7b19f2 (patch) | |
tree | 0eedc304ce66432d3394cf30b37b380c8dc7b300 /lotuswordpro | |
parent | 4b432a8c77ae4b5e8305ca69953bc202e7614664 (diff) |
-Werror,-Wformat (clang-cl)
Change-Id: I2605d5d9bc201bac8160c96b47c6e03181fcbfc3
Reviewed-on: https://gerrit.libreoffice.org/59156
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/lwpgrfobj.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwpgrfobj.cxx b/lotuswordpro/source/filter/lwpgrfobj.cxx index 26b3b8a52be5..2fc8d2ee3380 100644 --- a/lotuswordpro/source/filter/lwpgrfobj.cxx +++ b/lotuswordpro/source/filter/lwpgrfobj.cxx @@ -316,7 +316,7 @@ void LwpGraphicObject::GetBentoNamebyID(LwpObjectID const & rMyID, std::string& sal_uInt32 nLow = rMyID.GetLow(); char pTempStr[32]; rName = std::string("Gr"); - sprintf(pTempStr, "%X,%X", nHigh, nLow); + sprintf(pTempStr, "%X,%" SAL_PRIXUINT32, nHigh, nLow); rName.append(pTempStr); } |