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;
};