diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/confdata.c | 4 | ||||
-rw-r--r-- | scripts/kconfig/mconf.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 1d77aefb7..b92c2324e 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c | |||
@@ -334,7 +334,9 @@ int conf_write(const char *name) | |||
334 | struct symbol *sym; | 334 | struct symbol *sym; |
335 | struct menu *menu; | 335 | struct menu *menu; |
336 | const char *basename; | 336 | const char *basename; |
337 | char dirname[128], tmpname[128], newname[128]; | 337 | char dirname[128]; |
338 | char tmpname[256]; | ||
339 | char newname[256]; | ||
338 | int type, l; | 340 | int type, l; |
339 | const char *str; | 341 | const char *str; |
340 | time_t now; | 342 | time_t now; |
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index d3ad12d90..9fc837c9f 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c | |||
@@ -31,6 +31,10 @@ | |||
31 | #include <unistd.h> | 31 | #include <unistd.h> |
32 | #include <locale.h> | 32 | #include <locale.h> |
33 | 33 | ||
34 | #ifndef SIGWINCH | ||
35 | #define SIGWINCH 28 | ||
36 | #endif | ||
37 | |||
34 | #define LKC_DIRECT_LINK | 38 | #define LKC_DIRECT_LINK |
35 | #include "lkc.h" | 39 | #include "lkc.h" |
36 | 40 | ||