comparison src/event/ngx_event_timer.c @ 6935:03928f7f209b

Fixed a comment.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 17 Mar 2017 12:09:31 +0300
parents 3069dd358ba2
children 0c5e84096d99
comparison
equal deleted inserted replaced
6934:4d874b4d82ed 6935:03928f7f209b
65 return; 65 return;
66 } 66 }
67 67
68 node = ngx_rbtree_min(root, sentinel); 68 node = ngx_rbtree_min(root, sentinel);
69 69
70 /* node->key > ngx_current_time */ 70 /* node->key > ngx_current_msec */
71 71
72 if ((ngx_msec_int_t) (node->key - ngx_current_msec) > 0) { 72 if ((ngx_msec_int_t) (node->key - ngx_current_msec) > 0) {
73 return; 73 return;
74 } 74 }
75 75