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:
@@ -612,7 +612,7 @@ nxt_perl_psgi_env_create(PerlInterpreter *my_perl,
|
||||
do { \
|
||||
if (nxt_slow_path((FNS) != NXT_UNIT_OK)) \
|
||||
goto fail; \
|
||||
} while (0)
|
||||
} while (0)
|
||||
|
||||
#define NL(S) (S), sizeof(S)-1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user