diff options
Diffstat (limited to 'scripts/kconfig/confdata.c')
-rw-r--r-- | scripts/kconfig/confdata.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index ac13f0ff8e81..c39327e60ea4 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c | |||
@@ -412,7 +412,7 @@ static void conf_write_string(bool headerfile, const char *name, | |||
412 | while (1) { | 412 | while (1) { |
413 | l = strcspn(str, "\"\\"); | 413 | l = strcspn(str, "\"\\"); |
414 | if (l) { | 414 | if (l) { |
415 | fwrite(str, l, 1, out); | 415 | xfwrite(str, l, 1, out); |
416 | str += l; | 416 | str += l; |
417 | } | 417 | } |
418 | if (!*str) | 418 | if (!*str) |