From 7f229b7682f484f81159e0f58768f466ffe36136 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 24 Nov 2012 15:42:21 +0900 Subject: [PATCH] Remove execessive html quoting. Heh, I must have put that in long before I did the quoting functions. --- tools/qfcc/source/statements.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/qfcc/source/statements.c b/tools/qfcc/source/statements.c index b6b03dc73..8b05b9271 100644 --- a/tools/qfcc/source/statements.c +++ b/tools/qfcc/source/statements.c @@ -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);