summaryrefslogtreecommitdiff
path: root/src/format
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2020-07-14 22:14:50 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2020-07-14 22:14:50 (GMT)
commitb806230a94be8d3cefb79d7756c95660033596b2 (patch)
tree16f1db10a2c025a3f556a0c9e1b30e8d45062915 /src/format
parent24d47dfce830d44fd435805124f1727f24baf24b (diff)
Typo.
Diffstat (limited to 'src/format')
-rw-r--r--src/format/symbol.c6
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*/