Fix a logic inversion in an assert to allow us to use dts files that

include other files.
This commit is contained in:
Andrew Turner 2012-09-02 01:48:47 +00:00
parent 64baf9fbe0
commit f1f92378c1

View file

@ -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);