Eliminate 'poor global variable name' code defect in typd_mlc
authorIvan Maidanski <ivmai@mail.ru>
Thu, 30 Aug 2018 19:20:25 +0000 (22:20 +0300)
committerIvan Maidanski <ivmai@mail.ru>
Thu, 30 Aug 2018 19:23:09 +0000 (22:23 +0300)
(fix of commit a825a2d)

* typd_mlc.c (ld, ad, sd): Remove unused global variables.

typd_mlc.c

index eb40b0e..90a86bb 100644 (file)
@@ -71,21 +71,21 @@ typedef struct {
         size_t ld_nelements;    /* Number of elements.          */
         GC_descr ld_descriptor; /* A simple length, bitmap,     */
                                 /* or procedure descriptor.     */
-    } ld;
+    };
 
     struct ComplexArrayDescriptor {
         word ad_tag;
 #       define ARRAY_TAG 2
         size_t ad_nelements;
         union ComplexDescriptor * ad_element_descr;
-    } ad;
+    };
 
     struct SequenceDescriptor {
         word sd_tag;
 #       define SEQUENCE_TAG 3
         union ComplexDescriptor * sd_first;
         union ComplexDescriptor * sd_second;
-    } sd;
+    };
 
 typedef union ComplexDescriptor {
     struct LeafDescriptor ld;