diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/expr.h | 1 | ||||
-rw-r--r-- | scripts/kconfig/lkc.h | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/scripts/kconfig/expr.h b/scripts/kconfig/expr.h index 80fce57080cc..d4ecce8bc3a6 100644 --- a/scripts/kconfig/expr.h +++ b/scripts/kconfig/expr.h | |||
@@ -10,6 +10,7 @@ | |||
10 | extern "C" { | 10 | extern "C" { |
11 | #endif | 11 | #endif |
12 | 12 | ||
13 | #include <assert.h> | ||
13 | #include <stdio.h> | 14 | #include <stdio.h> |
14 | #ifndef __cplusplus | 15 | #ifndef __cplusplus |
15 | #include <stdbool.h> | 16 | #include <stdbool.h> |
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index b633bdb9f3d4..c18f2bd9c095 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h | |||
@@ -90,8 +90,10 @@ struct conf_printer { | |||
90 | /* confdata.c and expr.c */ | 90 | /* confdata.c and expr.c */ |
91 | static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out) | 91 | static inline void xfwrite(const void *str, size_t len, size_t count, FILE *out) |
92 | { | 92 | { |
93 | if (fwrite(str, len, count, out) < count) | 93 | assert(len != 0); |
94 | fprintf(stderr, "\nError in writing or end of file.\n"); | 94 | |
95 | if (fwrite(str, len, count, out) != count) | ||
96 | fprintf(stderr, "Error in writing or end of file.\n"); | ||
95 | } | 97 | } |
96 | 98 | ||
97 | /* menu.c */ | 99 | /* menu.c */ |