diff options
-rw-r--r-- | sw/source/filter/ww8/ww8par2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8par2.cxx b/sw/source/filter/ww8/ww8par2.cxx index af15642868bc..54704142bd4e 100644 --- a/sw/source/filter/ww8/ww8par2.cxx +++ b/sw/source/filter/ww8/ww8par2.cxx @@ -1580,7 +1580,7 @@ void WW8TabBandDesc::ReadNewShd(const sal_uInt8* pS, bool bVer67) void WW8TabBandDesc::setcelldefaults(WW8_TCell *pCells, short nCols) { - memset( pCells, 0, nCols * sizeof( WW8_TCell ) ); + memset(static_cast<void*>(pCells), 0, nCols * sizeof(WW8_TCell)); } namespace |