Skip to content

Commit f0a7f29

Browse files
committed
Fix copy paste error in LoggingPosixSupport
1 parent 3fda084 commit f0a7f29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/LoggingPosixSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ public void mmapFlush(Object mmap, long offset, long length,
833833
@ExportMessage
834834
public long mmapGetPointer(Object mmap,
835835
@CachedLibrary("this.delegate") PosixSupportLibrary lib) {
836-
logEnter("mmapFlush", "%s", mmap);
836+
logEnter("mmapGetPointer", "%s", mmap);
837837
return lib.mmapGetPointer(delegate, mmap);
838838
}
839839

0 commit comments

Comments
 (0)