Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nginx/nginx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-10-18 22:43:11 +0400
committerIgor Sysoev <igor@sysoev.ru>2006-10-18 22:43:11 +0400
commit289e3caa4664402a06535445f3505ad5b9a85073 (patch)
tree0c04a820df1c4c3545732ffdb78e776b9f66d441 /src/core/ngx_crc.h
parentc1484ffa6536aa093d3ad07bb2ae8894ffaee6ef (diff)
char* > u_char*
Diffstat (limited to 'src/core/ngx_crc.h')
-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;