diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-07-02 18:51:41 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-07-02 18:51:41 +0000 |
commit | 9d9f58f24d318dad43c7019c40a187555aaa64c8 (patch) | |
tree | 0600e4a1f78cf9359472e204604008732e4b301e /src/core/ngx_string.h | |
parent | 96c56c9ab6e73f9d92242fdc4f0cc3b64495bd23 (diff) | |
download | nginx-9d9f58f24d318dad43c7019c40a187555aaa64c8.tar.gz nginx-9d9f58f24d318dad43c7019c40a187555aaa64c8.zip |
nginx-0.0.1-2003-07-02-22:51:41 import
Diffstat (limited to 'src/core/ngx_string.h')
-rw-r--r-- | src/core/ngx_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ngx_string.h b/src/core/ngx_string.h index 73ed43a95..9171ea073 100644 --- a/src/core/ngx_string.h +++ b/src/core/ngx_string.h @@ -46,7 +46,7 @@ typedef struct { * msvc and icc compile memset() to inline "rep stos" * while ZeroMemory and bzero are calls. */ -#define ngx_memzero(buf, n) memset(buf, n, 0) +#define ngx_memzero(buf, n) memset(buf, 0, n) /* msvc and icc compile memcpy() to inline "rep movs" */ #define ngx_memcpy(dst, src, n) memcpy(dst, src, n) |