diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-31 12:51:22 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-31 12:28:42 +0000 |
commit | 677a0b459b8c1ad749969c4bb65b8d78cdf26cdc (patch) | |
tree | 703862373f0817fb96b74de1ad086199fdfd159c /sw | |
parent | c53912e526b54f67067861a42ce54ae1e24a92af (diff) |
add spaces in warning
Change-Id: Id040cfdae4adf07492e5262e93336caf4396aa39
Reviewed-on: https://gerrit.libreoffice.org/28546
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/ww8scan.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8scan.cxx b/sw/source/filter/ww8/ww8scan.cxx index 387eab550530..d8416b5d30f4 100644 --- a/sw/source/filter/ww8/ww8scan.cxx +++ b/sw/source/filter/ww8/ww8scan.cxx @@ -3843,7 +3843,7 @@ void WW8ReadSTTBF(bool bVer8, SvStream& rStrm, sal_uInt32 nStart, sal_Int32 nLen const size_t nMaxPossibleStrings = rStrm.remainingSize() / nMinRecordSize; if (nStrings > nMaxPossibleStrings) { - SAL_WARN("sw.ww8", "STTBF claims " << nStrings << " entries, but only " << nMaxPossibleStrings << "are possible"); + SAL_WARN("sw.ww8", "STTBF claims " << nStrings << " entries, but only " << nMaxPossibleStrings << " are possible"); nStrings = nMaxPossibleStrings; } @@ -3852,7 +3852,7 @@ void WW8ReadSTTBF(bool bVer8, SvStream& rStrm, sal_uInt32 nStart, sal_Int32 nLen const size_t nMaxExtraLen = (rStrm.remainingSize() - (nStrings * nMinStringLen)) / nStrings; if (nExtraLen > nMaxExtraLen) { - SAL_WARN("sw.ww8", "STTBF claims " << nMaxExtraLen << " extra len, but only " << nMaxExtraLen << "are possible"); + SAL_WARN("sw.ww8", "STTBF claims " << nMaxExtraLen << " extra len, but only " << nMaxExtraLen << " are possible"); nExtraLen = nMaxExtraLen; } } |