# HG changeset patch # User William Astle # Date 1342410744 21600 # Node ID e09985968e64929c90711869f308d98ca9e4e729 # Parent 164487152dd9b9c6c8be2b3a3885fc5677d47d9f Don't suppress symbol listing in unicorns mode Suppressing the symbol listing in unicorns mode is not needed so don't do it. diff -r 164487152dd9 -r e09985968e64 lwasm/list.c --- 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); }