From: H. Peter Anvin Date: Sat, 15 Sep 2007 01:36:01 +0000 (-0700) Subject: preproc.c: remove unnecessary int64_t X-Git-Tag: nasm-2.11.05~1972 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8cfdb9d185dbddec8ab5f01178ce194d6f4845b2;p=platform%2Fupstream%2Fnasm.git preproc.c: remove unnecessary int64_t We hardly need to support more than 2^31 arguments to a macro. --- diff --git a/preproc.c b/preproc.c index b5fa676..ba4778c 100644 --- a/preproc.c +++ b/preproc.c @@ -90,7 +90,7 @@ struct MMacro { MMacro *next; char *name; int casesense; - int64_t nparam_min, nparam_max; + int nparam_min, nparam_max; int plus; /* is the last parameter greedy? */ int nolist; /* is this macro listing-inhibited? */ int in_progress; @@ -1523,7 +1523,7 @@ static int do_directive(Token * tline) enum preproc_token i; int j; int nparam, nolist; - int64_t k, m; + int k, m; int offset; char *p, *mname; Include *inc;