Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/iwasm/aot/aot_loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -4656,7 +4656,7 @@ aot_unload(AOTModule *module)
}

uint32
aot_get_plt_table_size()
aot_get_plt_table_size(void)
{
return get_plt_table_size();
}
Expand Down
2 changes: 1 addition & 1 deletion core/iwasm/compilation/aot.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
static char aot_error[128];

char *
aot_get_last_error()
aot_get_last_error(void)
{
return aot_error[0] == '\0' ? "" : aot_error;
}
Expand Down
4 changes: 2 additions & 2 deletions core/iwasm/include/aot_export.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ void
aot_destroy_aot_file(uint8_t *aot_file);

char *
aot_get_last_error();
aot_get_last_error(void);

uint32_t
aot_get_plt_table_size();
aot_get_plt_table_size(void);

#ifdef __cplusplus
}
Expand Down
Loading