Skip to content

Commit

Permalink
HOST_FUNC_DECL: don't omit an argument
Browse files Browse the repository at this point in the history
it was not intentional and clang complained on it.
  • Loading branch information
yamt committed Aug 7, 2024
1 parent 456268b commit 88cf9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/host_instance.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ struct host_func {
};

#define HOST_FUNC_DECL(NAME) \
int NAME(struct exec_context *, struct host_instance *hi, \
int NAME(struct exec_context *ctx, struct host_instance *hi, \
const struct functype *ft, const struct cell *params, \
struct cell *results)

Expand Down

0 comments on commit 88cf9af

Please sign in to comment.