Browse Source

update assert() missed in 7e1c1f

Quentin Carbonneaux 8 years ago
parent
commit
c71f44c5a8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cfg.c

+ 1 - 1
cfg.c

@@ -93,7 +93,7 @@ rporec(Blk *b, uint x)
 	x = rporec(s1, x);
 	x = rporec(s2, x);
 	b->id = x;
-	assert(x >= 0);
+	assert(x != -1u);
 	return x - 1;
 }