mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
Backed out a part of previous commit that wasn;t mentioned in the log
message and wasn't quite ready (it avoided indenting the names of local variables).
This commit is contained in:
parent
59137ea864
commit
eebee5a754
1 changed files with 1 additions and 2 deletions
|
|
@ -909,8 +909,7 @@ check_type:
|
|||
* dec_ind = e_code - s_code + (ps.decl_indent>i ? ps.decl_indent
|
||||
* : i);
|
||||
*/
|
||||
dec_ind = ps.decl_indent > 0 &&
|
||||
(ps.ind_level == 0 || ps.dec_nest > 0) ? ps.decl_indent : i;
|
||||
dec_ind = ps.decl_indent > 0 ? ps.decl_indent : i;
|
||||
goto copy_id;
|
||||
|
||||
case ident: /* got an identifier or constant */
|
||||
|
|
|
|||
Loading…
Reference in a new issue