diff options
Diffstat (limited to 'scripts/basic/fixdep.c')
-rw-r--r-- | scripts/basic/fixdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/basic/fixdep.c b/scripts/basic/fixdep.c index 65bae4dac..a96239d38 100644 --- a/scripts/basic/fixdep.c +++ b/scripts/basic/fixdep.c | |||
@@ -239,11 +239,11 @@ void parse_config_file(char *map, size_t len) | |||
239 | /* We have at least 5 chars: for() has | 239 | /* We have at least 5 chars: for() has |
240 | * "p < end-4", not "p <= end-4" | 240 | * "p < end-4", not "p <= end-4" |
241 | * therefore we don't need to check p <= end-5 here */ | 241 | * therefore we don't need to check p <= end-5 here */ |
242 | if (p[4] == '_') { | 242 | if (p[4] == '_') |
243 | if (!memcmp(p, "SKIP", 4)) goto conf5; | 243 | if (!memcmp(p, "SKIP", 4)) goto conf5; |
244 | } | ||
245 | /* Ehhh, gcc is too stupid to just compare it as 32bit int */ | 244 | /* Ehhh, gcc is too stupid to just compare it as 32bit int */ |
246 | if (!memcmp(p, "USE_", 4)) goto conf4; | 245 | if (p[0] == 'U') |
246 | if (!memcmp(p, "USE_", 4)) goto conf4; | ||
247 | continue; | 247 | continue; |
248 | 248 | ||
249 | conf4: off = 4; | 249 | conf4: off = 4; |