svn commit: r239998 - head/contrib/dtc

Andrew Turner andrew at FreeBSD.org
Sun Sep 2 01:48:47 UTC 2012


Author: andrew
Date: Sun Sep  2 01:48:47 2012
New Revision: 239998
URL: http://svn.freebsd.org/changeset/base/239998

Log:
  Fix a logic inversion in an assert to allow us to use dts files that
  include other files.

Modified:
  head/contrib/dtc/dtc-lexer.l

Modified: head/contrib/dtc/dtc-lexer.l
==============================================================================
--- head/contrib/dtc/dtc-lexer.l	Sat Sep  1 23:33:49 2012	(r239997)
+++ head/contrib/dtc/dtc-lexer.l	Sun Sep  2 01:48:47 2012	(r239998)
@@ -198,7 +198,7 @@ static void push_input_file(const char *
 {
 	assert(filename);
 
-	assert(include_stack_pointer >= MAX_INCLUDE_NESTING);
+	assert(include_stack_pointer < MAX_INCLUDE_NESTING);
 
 	srcfile_push(filename);
 


More information about the svn-src-all mailing list