changeset 494:836dc5371980 ccdev

Remove stray semicolon that almost certainly was causing a bug of some kind.
author William Astle <lost@l-w.ca>
date Mon, 05 Aug 2019 21:07:14 -0600
parents a3e277c58df9
children 5b8871fd7503
files lwcc/preproc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lwcc/preproc.c	Sun Nov 17 11:59:36 2013 -0700
+++ b/lwcc/preproc.c	Mon Aug 05 21:07:14 2019 -0600
@@ -1580,7 +1580,7 @@
 				if (t2 -> ttype != TOK_WSPACE)
 					break;
 			}
-			for (t3 = t -> next; t3; t3 = t3 -> next);
+			for (t3 = t -> next; t3; t3 = t3 -> next)
 			{
 				if (t3 -> ttype != TOK_WSPACE)
 					break;