diff options
author | Igor Sysoev <igor@sysoev.ru> | 2009-09-25 20:25:47 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2009-09-25 20:25:47 +0000 |
commit | 29e7d8cc732196589fad7a0c38100cb61a4ac5c3 (patch) | |
tree | 0c10244e26544d3de2502648621d89f75ea951ab /src/os/win32/ngx_atomic.h | |
parent | 48a28e2dad8d5190ebae5dbe2f7779f8e17884a1 (diff) | |
download | nginx-29e7d8cc732196589fad7a0c38100cb61a4ac5c3.tar.gz nginx-29e7d8cc732196589fad7a0c38100cb61a4ac5c3.zip |
use parents around NGX_ATOMIC_T_LEN value
Diffstat (limited to 'src/os/win32/ngx_atomic.h')
-rw-r--r-- | src/os/win32/ngx_atomic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/win32/ngx_atomic.h b/src/os/win32/ngx_atomic.h index dc761a896..fc3cb40c0 100644 --- a/src/os/win32/ngx_atomic.h +++ b/src/os/win32/ngx_atomic.h @@ -17,7 +17,7 @@ typedef int32_t ngx_atomic_int_t; typedef uint32_t ngx_atomic_uint_t; typedef volatile ngx_atomic_uint_t ngx_atomic_t; -#define NGX_ATOMIC_T_LEN sizeof("-2147483648") - 1 +#define NGX_ATOMIC_T_LEN (sizeof("-2147483648") - 1) #if defined( __WATCOMC__ ) || defined( __BORLANDC__ ) || ( _MSC_VER >= 1300 ) |