]> git.kaiwu.me - nginx.git/commitdiff
style fix
authorIgor Sysoev <igor@sysoev.ru>
Fri, 13 Oct 2006 15:09:25 +0000 (15:09 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Fri, 13 Oct 2006 15:09:25 +0000 (15:09 +0000)
src/core/ngx_crc.h

index 73f4cdd6794e25c5754b364692f7ab1af40fd1c5..b2aff8966177a0857ea1e184f556566d872e7b15 100644 (file)
 
 /* 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;