Skip to content

Commit

Permalink
Fix compiler warning in loadelf
Browse files Browse the repository at this point in the history
  • Loading branch information
niklaut committed Feb 6, 2024
1 parent 41d7f3b commit acae595
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Src/loadelf.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ static void _processFunctionDie( struct symbol *p, Dwarf_Debug dbg, Dwarf_Die di
char *name = NULL;
Dwarf_Addr h = 0;
Dwarf_Addr l = 0;
enum Dwarf_Form_Class formclass;
enum Dwarf_Form_Class formclass = DW_FORM_CLASS_UNKNOWN;

Dwarf_Attribute attr_data;
Dwarf_Half attr_tag;
Expand Down

0 comments on commit acae595

Please sign in to comment.