X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?p=rmac;a=blobdiff_plain;f=macro.c;h=469a88c6493e9c9f61f408d3f987ed3da0467951;hp=38dfecd80ae7fb573144d759c2cfdbebb8c2300a;hb=cfd001aea60f54e49d9beae0f941c513f45c202b;hpb=a7d3861005ef22f14caec4e1c899e079334716af diff --git a/macro.c b/macro.c index 38dfecd..469a88c 100644 --- a/macro.c +++ b/macro.c @@ -22,7 +22,7 @@ int macnum; // Unique number for macro definition static LONG macuniq; // Unique-per-macro number static SYM * curmac; // Macro currently being defined -static VALUE argno; // Formal argument count +static uint32_t argno; // Formal argument count static LLIST * firstrpt; // First .rept line static LLIST * nextrpt; // Last .rept line @@ -244,7 +244,7 @@ WARNING("!!! Casting (char *) as LONG !!!") // int HandleRept(void) { - VALUE eval; + uint32_t eval; // Evaluate repeat expression if (abs_expr(&eval) != OK)