summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-10-18 18:43:11 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-10-18 18:43:11 +0000
commit289e3caa4664402a06535445f3505ad5b9a85073 (patch)
tree0c04a820df1c4c3545732ffdb78e776b9f66d441 /src
parentc1484ffa6536aa093d3ad07bb2ae8894ffaee6ef (diff)
downloadnginx-289e3caa4664402a06535445f3505ad5b9a85073.tar.gz
nginx-289e3caa4664402a06535445f3505ad5b9a85073.tar.bz2
char* > u_char*
Diffstat (limited to 'src')
-rw-r--r--src/core/ngx_crc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_crc.h b/src/core/ngx_crc.h
index b2aff8966..11bf32824 100644
--- a/src/core/ngx_crc.h
+++ b/src/core/ngx_crc.h
@@ -11,7 +11,7 @@
/* 32-bit crc16 */
static ngx_inline uint32_t
-ngx_crc(char *data, size_t len)
+ngx_crc(u_char *data, size_t len)
{
uint32_t sum;