widl: Remove unused 'rname' field of type_t.
diff --git a/tools/widl/parser.y b/tools/widl/parser.y
index 499f0f4..ca890f4 100644
--- a/tools/widl/parser.y
+++ b/tools/widl/parser.y
@@ -1016,7 +1016,6 @@
   t->name = NULL;
   t->type = type;
   t->ref = ref;
-  t->rname = NULL;
   t->attrs = NULL;
   t->funcs = NULL;
   t->fields = NULL;
diff --git a/tools/widl/widltypes.h b/tools/widl/widltypes.h
index 36d4aad..c578da7 100644
--- a/tools/widl/widltypes.h
+++ b/tools/widl/widltypes.h
@@ -183,7 +183,6 @@
   char *name;
   unsigned char type;
   struct _type_t *ref;
-  char *rname;
   attr_t *attrs;
   func_t *funcs;
   var_t *fields;
diff --git a/tools/widl/write_msft.c b/tools/widl/write_msft.c
index a9b9f34..219e9c2 100644
--- a/tools/widl/write_msft.c
+++ b/tools/widl/write_msft.c
@@ -947,7 +947,7 @@
 
 static void dump_type(type_t *t)
 {
-    chat("dump_type: %p name %s type %d ref %p rname %s attrs %p\n", t, t->name, t->type, t->ref, t->rname, t->attrs);
+    chat("dump_type: %p name %s type %d ref %p attrs %p\n", t, t->name, t->type, t->ref, t->attrs);
     if(t->ref) dump_type(t->ref);
 }