Skip to content

Commit ae859f9

Browse files
authored
Merge pull request #91 from netanelc305/bugfix/wrong_function_name
libvmi: Change to `vmi_get_max_physical_address`
2 parents 9a93220 + 027d9ba commit ae859f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libvmi/libvmi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -908,8 +908,8 @@ def get_kernel_struct_offset(self, struct_name, member):
908908
def get_memsize(self):
909909
return lib.vmi_get_memsize(self.vmi)
910910

911-
def get_max_physical_memory_address(self):
912-
return lib.vmi_get_max_physical_memory_address(self.vmi)
911+
def get_max_physical_address(self):
912+
return lib.vmi_get_max_physical_address(self.vmi)
913913

914914
def get_num_vcpus(self):
915915
return lib.vmi_get_num_vcpus(self.vmi)

0 commit comments

Comments
 (0)