diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2024-11-24 10:23:10 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2024-11-24 10:23:10 (GMT) |
commit | f58a0e41b2c7266f5e6b521485a9d62246efbb6d (patch) | |
tree | c19e18b83f08930b0262387c02150c79dbda320d /src/format/program-int.h | |
parent | d7aa3b671b83640006e00e853a439937c0c34dc0 (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.h | 4 |
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 */ }; |