# HG changeset patch # User William Astle # Date 1679430360 21600 # Node ID ee3e52ab22885b04a2f0c42f76da0c54698d3ccb # Parent cde1a5a48636634b78e0ff1648519139c94c7697 Remove unneeded variable reference lexing string literals (lwcc) Better not to increment an uninitialized value that's not used anywhere else on the code path. So don't. diff -r cde1a5a48636 -r ee3e52ab2288 lwcc/lex.c --- a/lwcc/lex.c Thu Mar 16 16:59:50 2023 -0600 +++ b/lwcc/lex.c Tue Mar 21 14:26:00 2023 -0600 @@ -682,7 +682,6 @@ strval = lw_strbuf_end(strbuf); goto out; } - cl++; lw_strbuf_add(strbuf, c); continue; }