Skip to content

Commit

Permalink
erts: Make ErlFunEntry more compact
Browse files Browse the repository at this point in the history
  • Loading branch information
jhogberg committed Jul 23, 2024
1 parent 33a2ba9 commit e53d572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion erts/emulator/beam/erl_fun.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ typedef struct erl_fun_entry {
/* These fields identify the function and must not be altered after fun
* creation. */
Eterm module; /* Tagged atom for module. */
Uint arity; /* The arity of the fun. */
byte uniq[16]; /* MD5 for module. */
int arity; /* The arity of the fun. */
int index; /* New style index. */

/* These have been prepared for removal in OTP 29. */
Expand Down

0 comments on commit e53d572

Please sign in to comment.