From d3217ff05115ccae31dd463a9f30f708b9cb8dd2 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 6 Jun 2004 23:49:57 -0700 Subject: Oops. Al forgot to handle the new TOKEN_UNTAINT in token comparison. --- pre-process.c | 1 + 1 file changed, 1 insertion(+) (limited to 'pre-process.c') diff --git a/pre-process.c b/pre-process.c index d2f77ec..f7d6735 100644 --- a/pre-process.c +++ b/pre-process.c @@ -615,6 +615,7 @@ static int token_different(struct token *t1, struct token *t2) switch (token_type(t1)) { case TOKEN_IDENT: + case TOKEN_UNTAINT: different = t1->ident != t2->ident; break; case TOKEN_NUMBER: -- cgit v1.2.3-65-gdbad