]> git.kaiwu.me - nginx.git/commitdiff
fix building by ICC8, the bug had been introduced in r3476
authorIgor Sysoev <igor@sysoev.ru>
Mon, 31 May 2010 14:44:17 +0000 (14:44 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Mon, 31 May 2010 14:44:17 +0000 (14:44 +0000)
src/core/ngx_times.c

index d9f5aa28ecbf4fcd4f4379c0b04f02e1da03cbe2..50501246a5ce37ad623c7d666bd3929089da2846 100644 (file)
@@ -172,7 +172,6 @@ ngx_time_sigsafe_update(void)
     u_char          *p;
     ngx_tm_t         tm;
     time_t           sec;
-    ngx_uint_t       msec;
     ngx_time_t      *tp;
     struct timeval   tv;
 
@@ -183,7 +182,6 @@ ngx_time_sigsafe_update(void)
     ngx_gettimeofday(&tv);
 
     sec = tv.tv_sec;
-    msec = tv.tv_usec / 1000;
 
     tp = &cached_time[slot];