mirror of
https://github.com/opnsense/src.git
synced 2026-05-04 17:05:14 -04:00
Fix a logic inversion in an assert to allow us to use dts files that
include other files.
This commit is contained in:
parent
64baf9fbe0
commit
f1f92378c1
1 changed files with 1 additions and 1 deletions
|
|
@ -198,7 +198,7 @@ static void push_input_file(const char *filename)
|
|||
{
|
||||
assert(filename);
|
||||
|
||||
assert(include_stack_pointer >= MAX_INCLUDE_NESTING);
|
||||
assert(include_stack_pointer < MAX_INCLUDE_NESTING);
|
||||
|
||||
srcfile_push(filename);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue