diff lwasm/list.c @ 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 721a5ea5e36a
children 1409debcb1a0
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);
 }