diff options
Diffstat (limited to 'scripts/kconfig/confdata.c')
| -rw-r--r-- | scripts/kconfig/confdata.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index dd243d2abd87..297b079ae4d9 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -375,7 +375,9 @@ load:  				continue;  		} else {  			if (line[0] != '\r' && line[0] != '\n') -				conf_warning("unexpected data"); +				conf_warning("unexpected data: %.*s", +					     (int)strcspn(line, "\r\n"), line); +  			continue;  		}  setsym:  |