summaryrefslogtreecommitdiff
path: root/src/analysis/db/items/comment.c
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2016-09-05 19:05:54 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2016-09-08 20:13:44 (GMT)
commitfe884ef58959412972a5a84231d1ee06f34a80be (patch)
tree6a5177a8c92d2e643d42768135fb0c7192756b56 /src/analysis/db/items/comment.c
parentcb74c4467fc623fbca4aad3b07abda3ed1246590 (diff)
Fixed a bug by transfering variable argument lists properly.
Diffstat (limited to 'src/analysis/db/items/comment.c')
-rw-r--r--src/analysis/db/items/comment.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/db/items/comment.c b/src/analysis/db/items/comment.c
index 8b9c25f..f601bd6 100644
--- a/src/analysis/db/items/comment.c
+++ b/src/analysis/db/items/comment.c
@@ -151,7 +151,7 @@ static bool g_comment_collection_create_db_table(const GCommentCollection *, sql
static bool g_comment_collection_setup_load(GCommentCollection *, bound_value **, size_t *);
/* Détermine si un élément est déjà présent ou non. */
-static GDbItem *g_comment_collection_has_key(GCommentCollection *, va_list *);
+static GDbItem *g_comment_collection_has_key(GCommentCollection *, va_list);
@@ -1121,7 +1121,7 @@ static bool g_comment_collection_setup_load(GCommentCollection *collec, bound_va
* *
******************************************************************************/
-static GDbItem *g_comment_collection_has_key(GCommentCollection *collec, va_list *ap)
+static GDbItem *g_comment_collection_has_key(GCommentCollection *collec, va_list ap)
{
GDbItem *result; /* Bilan à retourner */
vmpa2t *ref; /* Adresse de référence */