summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2007-09-14 18:36:01 -0700
committerH. Peter Anvin <hpa@zytor.com>2007-09-14 18:36:01 -0700
commit8cfdb9d185dbddec8ab5f01178ce194d6f4845b2 (patch)
treefed601e11cb9e6ead92cf5d71e7f2f89cb1805a8
parent6244f4b5b920211f451ce739eea673ee653f32dc (diff)
downloadnasm-8cfdb9d185dbddec8ab5f01178ce194d6f4845b2.tar.gz
preproc.c: remove unnecessary int64_t
We hardly need to support more than 2^31 arguments to a macro.
-rw-r--r--preproc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/preproc.c b/preproc.c
index b5fa676d..ba4778c4 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;