summaryrefslogtreecommitdiff
path: root/plugins/elf/python/constants.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/elf/python/constants.c')
-rw-r--r--plugins/elf/python/constants.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/elf/python/constants.c b/plugins/elf/python/constants.c
index 098443c..25b739a 100644
--- a/plugins/elf/python/constants.c
+++ b/plugins/elf/python/constants.c
@@ -33,7 +33,7 @@
/* Définit les constantes communes pour le format Elf. */
-static bool define_python_binary_format_common_constants(PyTypeObject *);
+static bool define_python_elf_format_common_constants(PyTypeObject *);
/******************************************************************************
@@ -48,7 +48,7 @@ static bool define_python_binary_format_common_constants(PyTypeObject *);
* *
******************************************************************************/
-static bool define_python_binary_format_common_constants(PyTypeObject *obj_type)
+static bool define_python_elf_format_common_constants(PyTypeObject *obj_type)
{
bool result; /* Bilan à retourner */
@@ -379,11 +379,11 @@ static bool define_python_binary_format_common_constants(PyTypeObject *obj_type)
* *
******************************************************************************/
-bool define_python_binary_format_constants(PyTypeObject *obj_type)
+bool define_python_elf_format_constants(PyTypeObject *obj_type)
{
bool result; /* Bilan à retourner */
- result = define_python_binary_format_common_constants(obj_type);
+ result = define_python_elf_format_common_constants(obj_type);
return result;