diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-12-28 12:43:31 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-30 18:48:24 +0000 |
commit | a29bd2dabb194c57be28d48ccc08c909831e7e67 (patch) | |
tree | 4afc38c5b5ad034a8784ae0c0f0317b6d676510d /include | |
parent | 97d24068021265e5f159211c90839622f7c87cb2 (diff) |
cleanup tailing backslashes
Change-Id: Idb4bfc97e7d758c58118742affd9a9345c7a99f2
Reviewed-on: https://gerrit.libreoffice.org/32491
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/onlineupdate/mar_private.h | 2 | ||||
-rw-r--r-- | include/svx/msdffdef.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/onlineupdate/mar_private.h b/include/onlineupdate/mar_private.h index a770998da6fe..12ff99d65e1f 100644 --- a/include/onlineupdate/mar_private.h +++ b/include/onlineupdate/mar_private.h @@ -32,7 +32,7 @@ MOZ_STATIC_ASSERT(MAX_SIZE_OF_MAR_FILE < ((int64_t)LONG_MAX), /* We store at most the size up to the signature block + 4 bytes per BLOCKSIZE bytes */ -MOZ_STATIC_ASSERT(sizeof(BLOCKSIZE) < \ +MOZ_STATIC_ASSERT(sizeof(BLOCKSIZE) < (SIGNATURE_BLOCK_OFFSET + sizeof(uint32_t)), "BLOCKSIZE is too big"); diff --git a/include/svx/msdffdef.hxx b/include/svx/msdffdef.hxx index 4e2f1e0bb39c..73b9d2c2b095 100644 --- a/include/svx/msdffdef.hxx +++ b/include/svx/msdffdef.hxx @@ -26,7 +26,7 @@ #define DFF_COMMON_RECORD_HEADER_SIZE 8 -const sal_uInt32 nMaxLegalDffRecordLength = \ +const sal_uInt32 nMaxLegalDffRecordLength = SAL_MAX_UINT32 - DFF_COMMON_RECORD_HEADER_SIZE; #define DFF_PSFLAG_CONTAINER 0x0F // If the version field of a record |