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; SMacro *next;
char *name; char *name;
bool casesense; bool casesense;
int in_progress; bool in_progress;
unsigned int nparam; unsigned int nparam;
Token *expansion; Token *expansion;
}; };