comparison 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
comparison
equal deleted inserted replaced
229:164487152dd9 230:e09985968e64
236 fprintf(of, "\n"); 236 fprintf(of, "\n");
237 } 237 }
238 lw_free(obytes); 238 lw_free(obytes);
239 obytes = NULL; 239 obytes = NULL;
240 } 240 }
241 if ((as -> flags & FLAG_SYMBOLS) && (as -> flags & FLAG_UNICORNS) == 0) 241 if ((as -> flags & FLAG_SYMBOLS))
242 list_symbols(as, of); 242 list_symbols(as, of);
243 } 243 }