From: Simon Josefsson Date: Fri, 21 Oct 2005 12:46:48 +0000 (+0000) Subject: Fix GNU indent bugs, suggested by Bruno. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fbdc31e39cf2d3765667eb48155092373d7da55;p=pspp Fix GNU indent bugs, suggested by Bruno. --- diff --git a/lib/md4.c b/lib/md4.c index fcade301ed..5c72430a65 100644 --- a/lib/md4.c +++ b/lib/md4.c @@ -49,7 +49,7 @@ /* This array contains the bytes used to pad the buffer to the next 64-byte boundary. (RFC 1320, 3.1: Step 1) */ -static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ }; +static const unsigned char fillbuf[64] = { 0x80, 0 /* , 0, 0, ... */ }; /* Initialize structure containing state of computation. @@ -103,9 +103,9 @@ md4_finish_ctx (struct md4_ctx *ctx, void *resbuf) memcpy (&ctx->buffer[bytes], fillbuf, pad); /* Put the 64-bit file length in *bits* at the end of the buffer. */ - *(uint32_t *) & ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3); - *(uint32_t *) & ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) | - (ctx->total[0] >> 29)); + *(uint32_t *) &ctx->buffer[bytes + pad] = SWAP (ctx->total[0] << 3); + *(uint32_t *) &ctx->buffer[bytes + pad + 4] = SWAP ((ctx->total[1] << 3) | + (ctx->total[0] >> 29)); /* Process last bytes. */ md4_process_block (ctx->buffer, bytes + pad + 8, ctx);