diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2020-05-18 10:21:16 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2020-05-18 10:21:16 (GMT) |
commit | 4f18f051936f633473c365d4c91ef7e77fa7feee (patch) | |
tree | e49603b80667a8cb2fc4592b5d4248f7cdf3494a /plugins/elf | |
parent | d110791309783e6e30df837a81cf8e14e1ac9641 (diff) |
Renamed the [Py]StructObject.
Diffstat (limited to 'plugins/elf')
-rw-r--r-- | plugins/elf/python/dynamic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/elf/python/dynamic.h b/plugins/elf/python/dynamic.h index 691eb83..b2b75b3 100644 --- a/plugins/elf/python/dynamic.h +++ b/plugins/elf/python/dynamic.h @@ -39,7 +39,7 @@ PyObject *py_elf_format_find_dynamic_item_by_index(PyObject *, PyObject *); METH_VARARGS, py_elf_format, \ "Find an item from the dynamic item using a given index." \ "\n" \ - "The result is an instance of type pychrysalide.PyStructObject" \ + "The result is an instance of type pychrysalide.StructObject" \ " on success, None otherwise." \ "\n" \ "The provided information about a found dynamic item is composed of" \ @@ -58,7 +58,7 @@ PyObject *py_elf_format_find_dynamic_item_by_type(PyObject *, PyObject *); METH_VARARGS, py_elf_format, \ "Find an item from the dynamic item using a given type." \ "\n" \ - "The result is an instance of type pychrysalide.PyStructObject" \ + "The result is an instance of type pychrysalide.StructObject" \ " on success, None otherwise." \ "\n" \ "The provided information about a found dynamic item is composed of" \ |