Fix command line -e option.

This commit is contained in:
Eric Smith 2018-03-08 16:37:13 -07:00
parent 9962af1740
commit 9a4a59f0cf
1 changed files with 2 additions and 4 deletions

6
main.c
View File

@ -616,11 +616,9 @@ void binaryloadfile (void)
if (entry_count)
{
int i;
char *label;
label = malloc(7);
for (i = 0; i < entry_count; i++)
for (int i = 0; i < entry_count; i++)
{
char *label = malloc(7);
sprintf (label, "e_%04x", entry_address[i]);
printf("label: %s\n", label);
start_trace (entry_address[i], label);