changeset 63:74b82202d355

Make for condition clearer
author lost@l-w.ca
date Thu, 07 Apr 2011 18:44:43 -0600
parents 5b10ff307463
children 8556e01ffcab
files lwasm/pseudo.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lwasm/pseudo.c	Thu Apr 07 18:38:09 2011 -0600
+++ b/lwasm/pseudo.c	Thu Apr 07 18:44:43 2011 -0600
@@ -985,7 +985,7 @@
 		delim = **p;
 		(*p)++;
 
-		for (p2 = *p; *p2 && *p2 != delim; p2++)
+		for (p2 = *p; *p2 && (*p2 != delim); p2++)
 			/* do nothing */ ;
 	}
 	else