]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - crypt/sha512.c
Break some lines before not after operators.
[thirdparty/glibc.git] / crypt / sha512.c
index e0c4ac1c1f68f9daccb2ea1290fda573920fd998..94adbd428ad18026bc884ae382c68f50236cd6f3 100644 (file)
@@ -149,8 +149,8 @@ __sha512_finish_ctx (struct sha512_ctx *ctx, void *resbuf)
 
   /* Put the 128-bit file length in *bits* at the end of the buffer.  */
   ctx->buffer64[(bytes + pad + 8) / 8] = SWAP (ctx->total[TOTAL128_low] << 3);
-  ctx->buffer64[(bytes + pad) / 8] = SWAP ((ctx->total[TOTAL128_high] << 3) |
-                                          (ctx->total[TOTAL128_low] >> 61));
+  ctx->buffer64[(bytes + pad) / 8] = SWAP ((ctx->total[TOTAL128_high] << 3)
+                                          (ctx->total[TOTAL128_low] >> 61));
 
   /* Process last bytes.  */
   __sha512_process_block (ctx->buffer, bytes + pad + 16, ctx);