diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-03-09 18:03:27 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-03-09 18:03:27 +0300 |
commit | 6f2c9acd1841ca20a1388b34aef64e9f00459090 (patch) | |
tree | c0b9c1063ec464027d1ca29a793f6c0b7a6878d5 /src/nxt_list.h | |
parent | 5745e4826427155e29c1d520fe77811a0f570689 (diff) | |
download | unit-6f2c9acd1841ca20a1388b34aef64e9f00459090.tar.gz unit-6f2c9acd1841ca20a1388b34aef64e9f00459090.tar.bz2 |
Processes refactoring.
The cycle has been renamed to the runtime.
Diffstat (limited to 'src/nxt_list.h')
-rw-r--r-- | src/nxt_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nxt_list.h b/src/nxt_list.h index 4d14f4d9..4b314360 100644 --- a/src/nxt_list.h +++ b/src/nxt_list.h @@ -75,7 +75,7 @@ nxt_list_elt(nxt_list_t *list, nxt_uint_t n) #define nxt_list_each(elt, list) \ do { \ - if (nxt_fast_path((list) != NULL)) { \ + if (nxt_fast_path((list) != NULL)) { \ void *_end; \ nxt_list_part_t *_part = nxt_list_part(list); \ \ |