summaryrefslogtreecommitdiff
path: root/src/analysis/db
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/analysis/db
parent24d47dfce830d44fd435805124f1727f24baf24b (diff)
Typo.
Diffstat (limited to 'src/analysis/db')
-rw-r--r--src/analysis/db/items/comment.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/db/items/comment.c b/src/analysis/db/items/comment.c
index 6c1f6d9..a4a62b0 100644
--- a/src/analysis/db/items/comment.c
+++ b/src/analysis/db/items/comment.c
@@ -137,7 +137,7 @@ static size_t g_db_comment_count_lines(const GDbComment *);
static void g_db_comment_compute_cursor(const GDbComment *, gint, size_t, size_t, GLineCursor **);
/* Détermine si le conteneur s'inscrit dans une plage donnée. */
-static int g_db_comment_contains_cursor(const GDbComment *, size_t, size_t, const GLineCursor *);
+static int g_db_comment_contain_cursor(const GDbComment *, size_t, size_t, const GLineCursor *);
/* Renseigne sur les propriétés liées à un générateur. */
static BufferLineFlags g_db_comment_get_flags(const GDbComment *, size_t, size_t);
@@ -272,7 +272,7 @@ static void g_db_comment_interface_init(GLineGeneratorInterface *iface)
{
iface->count = (linegen_count_lines_fc)g_db_comment_count_lines;
iface->compute = (linegen_compute_fc)g_db_comment_compute_cursor;
- iface->contains = (linegen_contains_fc)g_db_comment_contains_cursor;
+ iface->contain = (linegen_contain_fc)g_db_comment_contain_cursor;
iface->get_flags = (linegen_get_flags_fc)g_db_comment_get_flags;
iface->print = (linegen_print_fc)g_db_comment_print;
@@ -1382,7 +1382,7 @@ static void g_db_comment_compute_cursor(const GDbComment *comment, gint x, size_
* *
******************************************************************************/
-static int g_db_comment_contains_cursor(const GDbComment *comment, size_t index, size_t repeat, const GLineCursor *cursor)
+static int g_db_comment_contain_cursor(const GDbComment *comment, size_t index, size_t repeat, const GLineCursor *cursor)
{
int result; /* Conclusion à retourner */
vmpa2t addr; /* Autre emplacement à comparer*/