summaryrefslogtreecommitdiff
path: root/src/format/program-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2024-11-24 10:23:10 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2024-11-24 10:23:10 (GMT)
commitf58a0e41b2c7266f5e6b521485a9d62246efbb6d (patch)
treec19e18b83f08930b0262387c02150c79dbda320d /src/format/program-int.h
parentd7aa3b671b83640006e00e853a439937c0c34dc0 (diff)
Rename the function used to find section range by name.
Diffstat (limited to 'src/format/program-int.h')
-rw-r--r--src/format/program-int.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/format/program-int.h b/src/format/program-int.h
index 1549a0a..8464fe4 100644
--- a/src/format/program-int.h
+++ b/src/format/program-int.h
@@ -36,7 +36,7 @@
typedef SourceEndian (* program_get_endian_fc) (const GProgramFormat *);
/* Fournit l'emplacement d'une section donnée. */
-typedef bool (* get_range_by_name_fc) (const GProgramFormat *, const char *, mrange_t *);
+typedef bool (* find_range_by_name_fc) (const GProgramFormat *, const char *, mrange_t *);
/* Format de programme générique (instance) */
@@ -52,7 +52,7 @@ struct _GProgramFormatClass
GKnownFormatClass parent; /* A laisser en premier */
program_get_endian_fc get_endian; /* Boutisme employé */
- get_range_by_name_fc get_range_by_name; /* Emplacement de sections */
+ find_range_by_name_fc find_range_by_name; /* Emplacement de sections */
};