Fix command line -e option.

This commit is contained in:
Eric Smith 2018-02-11 16:00:10 -07:00
parent 8bbf37d17d
commit 0e9139e700
1 changed files with 3 additions and 2 deletions

5
main.c
View File

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