X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=symbol.c;h=b89cd8091587571de30190d93d932a025fe6ce36;hp=f2f513cc3671aa0ca652d7be9f300c40fd8281d4;hb=ba392fd1c677a8aeb55cbaf81bc529f16c02e804;hpb=9207a38ed4a09c60a1e9b9995a92bcd4580e3662 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;