Skip to content

Commit

Permalink
Fix(avs): Incorrect function signature
Browse files Browse the repository at this point in the history
After getting doubts, I looked this one up again on the
assembly. The decompiled output confused me
and no actual value is being returned there.
  • Loading branch information
icex2 committed Feb 25, 2024
1 parent 8804e66 commit e12cd63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/imports/avs.h
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ int property_set_flag(struct property *prop, int flags, int mask);
void property_destroy(struct property *prop);

avs_error property_get_error(struct property *prop);
struct property *property_clear_error(struct property *prop);
void property_clear_error(struct property *prop);

int property_psmap_import(
struct property *prop,
Expand Down

0 comments on commit e12cd63

Please sign in to comment.