From 29e7d8cc732196589fad7a0c38100cb61a4ac5c3 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 25 Sep 2009 20:25:47 +0000 Subject: use parents around NGX_ATOMIC_T_LEN value --- src/os/win32/ngx_atomic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/os/win32/ngx_atomic.h') 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 ) -- cgit