From 270e41adb0c7a5f3e25e0ea25933de0d5c32ef9c Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sat, 3 Nov 2018 16:31:41 +0200 Subject: loplugin:buriedassign in sd..writerfilter Change-Id: I954c12d9e1c493be6ac8c7b15076077b5bff5b74 Reviewed-on: https://gerrit.libreoffice.org/62811 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sal/rtl/digest.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sal') diff --git a/sal/rtl/digest.cxx b/sal/rtl/digest.cxx index c9d1f3918bb2..3ec357a2cb34 100644 --- a/sal/rtl/digest.cxx +++ b/sal/rtl/digest.cxx @@ -36,10 +36,10 @@ *((c)++) = static_cast(((l) ) & 0xff)) #define RTL_DIGEST_LTOC(l,c) \ - (*((c)++) = static_cast(((l) ) & 0xff), \ - *((c)++) = static_cast(((l) >> 8) & 0xff), \ - *((c)++) = static_cast(((l) >> 16) & 0xff), \ - *((c)++) = static_cast(((l) >> 24) & 0xff)) + *((c)++) = static_cast(((l) ) & 0xff); \ + *((c)++) = static_cast(((l) >> 8) & 0xff); \ + *((c)++) = static_cast(((l) >> 16) & 0xff); \ + *((c)++) = static_cast(((l) >> 24) & 0xff); typedef rtlDigestError (Digest_init_t) ( void *ctx, const sal_uInt8 *Data, sal_uInt32 DatLen); -- cgit