fixdep: fix coding style in previous fix

Remove a double space introduced by my previous fixdep fix.

Fixes: 76ae74d348 ("fixdep: fix CONFIG_IS_ENABLED etc. handling")
Signed-off-by: Stephen Warren <swarren@nvidia.com>
This commit is contained in:
Stephen Warren 2020-07-21 14:38:51 -06:00 committed by Tom Rini
parent c9db1a103c
commit 2d8e102cd2
1 changed files with 1 additions and 1 deletions

View File

@ -266,7 +266,7 @@ static void parse_config_file(const char *p)
(q - p == 9 && !memcmp(p, "IS_MODULE(", 10)) ||
(q - p == 3 && !memcmp(p, "VAL(", 4))) {
p = q + 1;
q = p;
q = p;
while (isalnum(*q) || *q == '_')
q++;
r = q;