diff lwcc/token.c @ 304:d85d173ba120 ccdev

Checkpoint lwcc development - preprocessor is runnable but nonfunctional The preprocessor is currently runnable but doesn't actually do anything useful. This is just a checkpoint.
author William Astle <lost@l-w.ca>
date Tue, 17 Sep 2013 19:33:41 -0600
parents 856caf91ffaa
children 54f213c8fb81
line wrap: on
line diff
--- a/lwcc/token.c	Tue Sep 17 19:32:14 2013 -0600
+++ b/lwcc/token.c	Tue Sep 17 19:33:41 2013 -0600
@@ -35,7 +35,7 @@
 	if (strval)
 		t -> strval = lw_strdup(strval);
 	else
-		strval = NULL;
+		t -> strval = NULL;
 	t -> lineno = row;
 	t -> column = col;
 	t -> fn = fn;