More coherent output when tracking function calls

This commit is contained in:
Pierre Pronchery 2011-09-06 22:14:53 +00:00
parent 8cae299570
commit a05c936369

View File

@ -488,7 +488,7 @@ static void _print_immediate(ArchOperand * ao)
else if(AO_GET_VALUE(ao->definition) == AOI_REFERS_FUNCTION)
{
if(ao->value.immediate.name != NULL)
printf(" call \"%s\"", ao->value.immediate.name);
printf(" (call \"%s\")", ao->value.immediate.name);
else
printf("%s", " (call)");
}