Remove execessive html quoting.

Heh, I must have put that in long before I did the quoting functions.
This commit is contained in:
Bill Currie 2012-11-24 15:42:21 +09:00
parent dbbca47a3b
commit 7f229b7682

View file

@ -112,7 +112,7 @@ operand_string (operand_t *op)
case op_pointer:
type = op->o.value->v.pointer.type;
if (op->o.value->v.pointer.def)
return va ("(%s)[%d]<%s>",
return va ("(%s)[%d]<%s>",
type ? pr_type_name[type->type] : "???",
op->o.value->v.pointer.val,
op->o.value->v.pointer.def->name);