# HG changeset patch # User William Astle # Date 1565060834 21600 # Node ID 836dc53719805fa8b247a9f0b319d6cea63a47ff # Parent a3e277c58df90569632ae2cda7a8430c97ab7c10 Remove stray semicolon that almost certainly was causing a bug of some kind. diff -r a3e277c58df9 -r 836dc5371980 lwcc/preproc.c --- 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;