changeset 230:e09985968e64

Don't suppress symbol listing in unicorns mode Suppressing the symbol listing in unicorns mode is not needed so don't do it.
author William Astle <lost@l-w.ca>
date Sun, 15 Jul 2012 21:52:24 -0600
parents 164487152dd9
children 2cc599f1bebf
files lwasm/list.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lwasm/list.c	Sun Jul 15 21:46:29 2012 -0600
+++ b/lwasm/list.c	Sun Jul 15 21:52:24 2012 -0600
@@ -238,6 +238,6 @@
 		lw_free(obytes);
 		obytes = NULL;
 	}
-	if ((as -> flags & FLAG_SYMBOLS) && (as -> flags & FLAG_UNICORNS) == 0)
+	if ((as -> flags & FLAG_SYMBOLS))
 		list_symbols(as, of);
 }