Skip to content

Commit bd06e9f

Browse files
committed
Fix typo
1 parent 57ba5b7 commit bd06e9f

File tree

1 file changed

+2
-2
lines changed
  • espresso/src/com.oracle.truffle.espresso/src/com/oracle/truffle/espresso/vm

1 file changed

+2
-2
lines changed

espresso/src/com.oracle.truffle.espresso/src/com/oracle/truffle/espresso/vm/Management.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,10 @@ public final class Management extends NativeEnv {
147147
public Management(EspressoContext context, TruffleObject mokapotLibrary) {
148148
assert context.EnableManagement;
149149
this.context = context;
150-
this.initializeManagementContext = getNativeAccess().lookupAndBindSymbol(mokapotLibrary, "initializeMokapotContext",
150+
this.initializeManagementContext = getNativeAccess().lookupAndBindSymbol(mokapotLibrary, "initializeManagementContext",
151151
NativeSignature.create(NativeType.POINTER, NativeType.POINTER, NativeType.INT));
152152

153-
this.disposeManagementContext = getNativeAccess().lookupAndBindSymbol(mokapotLibrary, "disposeMokapotContext",
153+
this.disposeManagementContext = getNativeAccess().lookupAndBindSymbol(mokapotLibrary, "disposeManagementContext",
154154
NativeSignature.create(NativeType.VOID, NativeType.POINTER, NativeType.INT, NativeType.POINTER));
155155
}
156156

0 commit comments

Comments
 (0)