X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=symbol.c;h=b89cd8091587571de30190d93d932a025fe6ce36;hp=f2f513cc3671aa0ca652d7be9f300c40fd8281d4;hb=732c626abe986e60ea947bd65cad4a4a1b84e800;hpb=60f204cb9e3905100da0d89f14bb40db764acd9e diff --git a/symbol.c b/symbol.c index f2f513c..b89cd80 100644 --- a/symbol.c +++ b/symbol.c @@ -400,7 +400,7 @@ int symtable(void) // Allocate storage for list headers and partition all labels. Throw away // macros and macro arguments. - SYM ** sy = (SYM **)malloc(128 * sizeof(uint32_t)); + SYM ** sy = (SYM **)malloc(128 * sizeof(SYM **)); for(i=0; i<128; i++) sy[i] = NULL;