diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-10-19 02:51:21 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-10-19 02:51:21 -0400 |
commit | eca28e3764e301fad662743d1e8ba7296cc6a109 (patch) | |
tree | 23e420fadd4a844d72431e433e1234d5a092a8d0 /arch/sh/kernel | |
parent | 1c8db713e21c82e14d0d1be14a09dae224472396 (diff) |
sh: Fix up uninitialized variable warning in dwarf unwinder.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel')
-rw-r--r-- | arch/sh/kernel/dwarf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c index 718286be6648..4d8c7bd149df 100644 --- a/arch/sh/kernel/dwarf.c +++ b/arch/sh/kernel/dwarf.c | |||
@@ -902,7 +902,7 @@ static int dwarf_parse_section(char *eh_frame_start, char *eh_frame_end, | |||
902 | u32 entry_type; | 902 | u32 entry_type; |
903 | void *p, *entry; | 903 | void *p, *entry; |
904 | int count, err = 0; | 904 | int count, err = 0; |
905 | unsigned long len; | 905 | unsigned long len = 0; |
906 | unsigned int c_entries, f_entries; | 906 | unsigned int c_entries, f_entries; |
907 | unsigned char *end; | 907 | unsigned char *end; |
908 | 908 | ||