Skip to content

Commit 1f44d27

Browse files
committed
erts: Fix missing "const" on maint branch
1 parent 695d5c9 commit 1f44d27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

erts/emulator/beam/beam_bp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ erts_bp_match_functions(BpFunctions* f, ErtsCodeMFA *mfa, int specified,
238238
}
239239

240240
if (ignore_bifs) {
241-
Export *ep = erts_active_export_entry(ci->mfa.module,
241+
const Export *ep = erts_active_export_entry(ci->mfa.module,
242242
ci->mfa.function,
243243
ci->mfa.arity);
244244
if (ep && ep->bif_number >= 0) {

0 commit comments

Comments
 (0)