diff options
Diffstat (limited to 'plugins/pe/format.c')
-rw-r--r-- | plugins/pe/format.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/pe/format.c b/plugins/pe/format.c index ab9106d..11bc116 100644 --- a/plugins/pe/format.c +++ b/plugins/pe/format.c @@ -76,7 +76,7 @@ static bool g_pe_format_get_main_address(GPeFormat *, vmpa2t *); static bool g_pe_format_refine_portions(GPeFormat *); /* Fournit l'emplacement d'une section donnée. */ -static bool g_pe_format_get_section_range_by_name(const GPeFormat *, const char *, mrange_t *); +static bool g_pe_format_find_section_range_by_name(const GPeFormat *, const char *, mrange_t *); @@ -170,7 +170,7 @@ static void g_pe_format_class_init(GPeFormatClass *klass) prgm = G_PROGRAM_FORMAT_CLASS(klass); prgm->get_endian = (program_get_endian_fc)g_pe_format_get_endianness; - prgm->get_range_by_name = (get_range_by_name_fc)g_pe_format_get_section_range_by_name; + prgm->find_range_by_name = (find_range_by_name_fc)g_pe_format_find_section_range_by_name; exe = G_EXECUTABLE_FORMAT_CLASS(klass); @@ -695,7 +695,7 @@ static SourceEndian g_pe_format_get_endianness(const GPeFormat *format) * * ******************************************************************************/ -static bool g_pe_format_get_section_range_by_name(const GPeFormat *format, const char *name, mrange_t *range) +static bool g_pe_format_find_section_range_by_name(const GPeFormat *format, const char *name, mrange_t *range) { bool result; /* Bilan à retourner */ uint16_t i; /* Boucle de parcours */ |