Fixed indentation.
Some lines (incorrectly) had an indentation of 3 or 5, or 7 or 9, or 11 or 13, or 15 or 17 spaces instead of 4, 8, 12, or 16. Fix them. Found with: $ find src -type f | xargs grep -n '^ [^ ]'; $ find src -type f | xargs grep -n '^ [^ *]'; $ find src -type f | xargs grep -n '^ [^ ]'; $ find src -type f | xargs grep -n '^ [^ *]'; $ find src -type f | xargs grep -n '^ [^ +]'; $ find src -type f | xargs grep -n '^ [^ *+]'; $ find src -type f | xargs grep -n '^ [^ +]'; $ find src -type f | xargs grep -n '^ [^ *+]';
This commit is contained in:
@@ -16,12 +16,12 @@ struct nxt_task_s {
|
||||
uint32_t ident;
|
||||
nxt_work_t *next_work;
|
||||
|
||||
/* TODO: exception_handler, prev/next task, subtasks. */
|
||||
/* TODO: exception_handler, prev/next task, subtasks. */
|
||||
};
|
||||
|
||||
|
||||
#define nxt_task_next_ident() \
|
||||
((uint32_t) nxt_atomic_fetch_add(&nxt_task_ident, 1) & 0x3FFFFFFF)
|
||||
((uint32_t) nxt_atomic_fetch_add(&nxt_task_ident, 1) & 0x3FFFFFFF)
|
||||
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user