0
0
mirror of https://github.com/netwide-assembler/nasm.git synced 2025-10-10 00:25:06 -04:00

preproc.c: For an SMacro, in_progress really is a boolean (no %rep)

This commit is contained in:
H. Peter Anvin
2007-10-11 10:06:19 -07:00
parent 70055964fc
commit 16ed438e71

View File

@@ -76,7 +76,7 @@ struct SMacro {
SMacro *next;
char *name;
bool casesense;
int in_progress;
bool in_progress;
unsigned int nparam;
Token *expansion;
};