summaryrefslogtreecommitdiff
path: root/sal/rtl/digest.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/rtl/digest.cxx')
-rw-r--r--sal/rtl/digest.cxx8
1 files changed, 4 insertions, 4 deletions
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<sal_uInt8>(((l) ) & 0xff))
#define RTL_DIGEST_LTOC(l,c) \
- (*((c)++) = static_cast<sal_uInt8>(((l) ) & 0xff), \
- *((c)++) = static_cast<sal_uInt8>(((l) >> 8) & 0xff), \
- *((c)++) = static_cast<sal_uInt8>(((l) >> 16) & 0xff), \
- *((c)++) = static_cast<sal_uInt8>(((l) >> 24) & 0xff))
+ *((c)++) = static_cast<sal_uInt8>(((l) ) & 0xff); \
+ *((c)++) = static_cast<sal_uInt8>(((l) >> 8) & 0xff); \
+ *((c)++) = static_cast<sal_uInt8>(((l) >> 16) & 0xff); \
+ *((c)++) = static_cast<sal_uInt8>(((l) >> 24) & 0xff);
typedef rtlDigestError (Digest_init_t) (
void *ctx, const sal_uInt8 *Data, sal_uInt32 DatLen);