diff options
Diffstat (limited to 'src/format')
-rw-r--r-- | src/format/symbol.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/format/symbol.c b/src/format/symbol.c index abf284e..d2faf7c 100644 --- a/src/format/symbol.c +++ b/src/format/symbol.c @@ -65,7 +65,7 @@ static size_t g_binary_symbol_count_lines(const GBinSymbol *); static void g_binary_symbol_compute_cursor(const GBinSymbol *, gint, size_t, size_t, GLineCursor **); /* Détermine si le conteneur s'inscrit dans une plage donnée. */ -static int g_binary_symbol_contains_cursor(const GBinSymbol *, size_t, size_t, const GLineCursor *); +static int g_binary_symbol_contain_cursor(const GBinSymbol *, size_t, size_t, const GLineCursor *); /* Renseigne sur les propriétés liées à un générateur. */ static BufferLineFlags g_binary_symbol_get_line_flags(const GBinSymbol *, size_t, size_t); @@ -148,7 +148,7 @@ static void g_binary_symbol_interface_init(GLineGeneratorInterface *iface) { iface->count = (linegen_count_lines_fc)g_binary_symbol_count_lines; iface->compute = (linegen_compute_fc)g_binary_symbol_compute_cursor; - iface->contains = (linegen_contains_fc)g_binary_symbol_contains_cursor; + iface->contain = (linegen_contain_fc)g_binary_symbol_contain_cursor; iface->get_flags = (linegen_get_flags_fc)g_binary_symbol_get_line_flags; iface->print = (linegen_print_fc)g_binary_symbol_print; @@ -774,7 +774,7 @@ void g_binary_symbol_compute_cursor(const GBinSymbol *symbol, gint x, size_t ind * * ******************************************************************************/ -static int g_binary_symbol_contains_cursor(const GBinSymbol *symbol, size_t index, size_t repeat, const GLineCursor *cursor) +static int g_binary_symbol_contain_cursor(const GBinSymbol *symbol, size_t index, size_t repeat, const GLineCursor *cursor) { int result; /* Conclusion à retourner */ vmpa2t addr; /* Autre emplacement à comparer*/ |