diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-12-08 22:12:37 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-08 22:12:37 +0000 |
commit | 8cdfc515c31188e23cd270cadc0787433b2b8f30 (patch) | |
tree | cdedde10b4e9b71bc3284581fc9928505b55084d /src | |
parent | f4f2efa54c004bae7426f1b03d417ee1240a8d96 (diff) | |
download | nginx-8cdfc515c31188e23cd270cadc0787433b2b8f30.tar.gz nginx-8cdfc515c31188e23cd270cadc0787433b2b8f30.zip |
fix r1695
Diffstat (limited to 'src')
-rw-r--r-- | src/core/ngx_crc32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_crc32.h b/src/core/ngx_crc32.h index fe76156dc..4435e4517 100644 --- a/src/core/ngx_crc32.h +++ b/src/core/ngx_crc32.h @@ -53,7 +53,7 @@ ngx_crc32_long(u_char *p, size_t len) crc = 0xffffffff -static void +static ngx_inline void ngx_crc32_update(uint32_t *crc, u_char *p, size_t len) { uint32_t c; |