summaryrefslogtreecommitdiff
path: root/src/analysis/db/items/switcher.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/switcher.c
parentcb74c4467fc623fbca4aad3b07abda3ed1246590 (diff)
Fixed a bug by transfering variable argument lists properly.
Diffstat (limited to 'src/analysis/db/items/switcher.c')
-rw-r--r--src/analysis/db/items/switcher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/analysis/db/items/switcher.c b/src/analysis/db/items/switcher.c
index 40a218c..e9182b4 100644
--- a/src/analysis/db/items/switcher.c
+++ b/src/analysis/db/items/switcher.c
@@ -144,7 +144,7 @@ static bool g_switcher_collection_create_db_table(const GSwitcherCollection *, s
static bool g_switcher_collection_setup_load(GSwitcherCollection *, bound_value **, size_t *);
/* Détermine si un élément est déjà présent ou non. */
-static GDbItem *g_switcher_collection_has_key(GSwitcherCollection *, va_list *);
+static GDbItem *g_switcher_collection_has_key(GSwitcherCollection *, va_list);
@@ -944,7 +944,7 @@ static bool g_switcher_collection_setup_load(GSwitcherCollection *collec, bound_
* *
******************************************************************************/
-static GDbItem *g_switcher_collection_has_key(GSwitcherCollection *collec, va_list *ap)
+static GDbItem *g_switcher_collection_has_key(GSwitcherCollection *collec, va_list ap)
{
GDbItem *result; /* Bilan à retourner */
vmpa2t *ref; /* Adresse de référence */