Fix typo (dwarf) in the codebase (#2367)

In the codebase, the struct and functions were written without "f" for dwarf.
This commit is contained in:
Cengizhan Pasaoglu
2023-07-19 12:58:52 +03:00
committed by GitHub
parent fbcf8c2c60
commit 57abdfdb5c
4 changed files with 22 additions and 22 deletions

View File

@ -26,8 +26,8 @@ void
aot_destroy_comp_data(aot_comp_data_t comp_data);
#if WASM_ENABLE_DEBUG_AOT != 0
typedef void *dwar_extractor_handle_t;
dwar_extractor_handle_t
typedef void *dwarf_extractor_handle_t;
dwarf_extractor_handle_t
create_dwarf_extractor(aot_comp_data_t comp_data, char *file_name);
#endif