summaryrefslogtreecommitdiff
path: root/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'types.c')
-rw-r--r--types.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/types.c b/types.c
index 27295fe..a03a476 100644
--- a/types.c
+++ b/types.c
@@ -395,7 +395,6 @@ typedef enum {
static Status type_cast_status(Type *from, Type *to) {
if (to->kind == TYPE_UNKNOWN)
return STATUS_NONE;
- fprint_type(stdout, from); puts("");
if (from->kind == TYPE_USER) {
return type_eq(to, ident_typeval(from->user.name)) ? STATUS_NONE : STATUS_ERR;
}