summaryrefslogtreecommitdiff
path: root/sw/source/filter/writer
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 10:21:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 10:50:52 +0100
commit40a7abaab8bead1b1f04774324b7d652ce7f75f1 (patch)
tree4aaed5c2679c23357cd64177514480ab4080975f /sw/source/filter/writer
parent68a5afaaabd0c75bba3439cfdff90fb75d1cdd3f (diff)
sal_Char->char in sw
Change-Id: I63fb87a8e8eaf9c9da7bf7b8b6f5706222ffcc07 Reviewed-on: https://gerrit.libreoffice.org/85730 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/writer')
-rw-r--r--sw/source/filter/writer/writer.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/writer/writer.cxx b/sw/source/filter/writer/writer.cxx
index 7214c84b3ca7..bb761851da6c 100644
--- a/sw/source/filter/writer/writer.cxx
+++ b/sw/source/filter/writer/writer.cxx
@@ -42,13 +42,13 @@ namespace
{
SvStream& lcl_OutLongExt( SvStream& rStrm, sal_uLong nVal, bool bNeg )
{
- sal_Char aBuf[28];
+ char aBuf[28];
int i = SAL_N_ELEMENTS(aBuf);
aBuf[--i] = 0;
do
{
- aBuf[--i] = '0' + static_cast<sal_Char>(nVal % 10);
+ aBuf[--i] = '0' + static_cast<char>(nVal % 10);
nVal /= 10;
} while (nVal);