From 0ab9e437145620ea9e44c03173c9e60d9b29475b Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 13 Oct 2006 15:09:25 +0000 Subject: style fix --- src/core/ngx_crc.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/core/ngx_crc.h b/src/core/ngx_crc.h index 73f4cdd67..b2aff8966 100644 --- a/src/core/ngx_crc.h +++ b/src/core/ngx_crc.h @@ -10,15 +10,16 @@ /* 32-bit crc16 */ -static ngx_inline uint32_t ngx_crc(char *data, size_t len) +static ngx_inline uint32_t +ngx_crc(char *data, size_t len) { uint32_t sum; for (sum = 0; len; len--) { /* - * gcc 2.95.2 x86 and icc 7.1.006 compile that operator - * into the single "rol" opcode. + * gcc 2.95.2 x86 and icc 7.1.006 compile + * that operator into the single "rol" opcode, * msvc 6.0sp2 compiles it into four opcodes. */ sum = sum >> 1 | sum << 31; -- cgit