aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kconfig')
-rw-r--r--scripts/kconfig/confdata.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index 5a58965d8800..7c7a5a6cc3f5 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -464,7 +464,7 @@ kconfig_print_comment(FILE *fp, const char *value, void *arg)
464 fprintf(fp, "#"); 464 fprintf(fp, "#");
465 if (l) { 465 if (l) {
466 fprintf(fp, " "); 466 fprintf(fp, " ");
467 fwrite(p, l, 1, fp); 467 xfwrite(p, l, 1, fp);
468 p += l; 468 p += l;
469 } 469 }
470 fprintf(fp, "\n"); 470 fprintf(fp, "\n");
@@ -537,7 +537,7 @@ header_print_comment(FILE *fp, const char *value, void *arg)
537 fprintf(fp, " *"); 537 fprintf(fp, " *");
538 if (l) { 538 if (l) {
539 fprintf(fp, " "); 539 fprintf(fp, " ");
540 fwrite(p, l, 1, fp); 540 xfwrite(p, l, 1, fp);
541 p += l; 541 p += l;
542 } 542 }
543 fprintf(fp, "\n"); 543 fprintf(fp, "\n");