diff options
Diffstat (limited to 'scripts/kallsyms.c')
-rw-r--r-- | scripts/kallsyms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kallsyms.c b/scripts/kallsyms.c index 8b809b264d18..10b006694e5d 100644 --- a/scripts/kallsyms.c +++ b/scripts/kallsyms.c | |||
@@ -31,7 +31,7 @@ | |||
31 | #include <string.h> | 31 | #include <string.h> |
32 | #include <ctype.h> | 32 | #include <ctype.h> |
33 | 33 | ||
34 | #define KSYM_NAME_LEN 127 | 34 | #define KSYM_NAME_LEN 128 |
35 | 35 | ||
36 | 36 | ||
37 | struct sym_entry { | 37 | struct sym_entry { |
@@ -254,7 +254,7 @@ static void write_src(void) | |||
254 | unsigned int i, k, off; | 254 | unsigned int i, k, off; |
255 | unsigned int best_idx[256]; | 255 | unsigned int best_idx[256]; |
256 | unsigned int *markers; | 256 | unsigned int *markers; |
257 | char buf[KSYM_NAME_LEN+1]; | 257 | char buf[KSYM_NAME_LEN]; |
258 | 258 | ||
259 | printf("#include <asm/types.h>\n"); | 259 | printf("#include <asm/types.h>\n"); |
260 | printf("#if BITS_PER_LONG == 64\n"); | 260 | printf("#if BITS_PER_LONG == 64\n"); |