summaryrefslogtreecommitdiff
path: root/src/analysis/db/collection.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/collection.c
parentcb74c4467fc623fbca4aad3b07abda3ed1246590 (diff)
Fixed a bug by transfering variable argument lists properly.
Diffstat (limited to 'src/analysis/db/collection.c')
-rw-r--r--src/analysis/db/collection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analysis/db/collection.c b/src/analysis/db/collection.c
index 09d9c90..afb5b28 100644
--- a/src/analysis/db/collection.c
+++ b/src/analysis/db/collection.c
@@ -527,7 +527,7 @@ GDbItem *g_db_collection_has_key(GDbCollection *collec, ...)
va_start(ap, collec);
- result = G_DB_COLLECTION_GET_CLASS(collec)->has_key(collec, &ap);
+ result = G_DB_COLLECTION_GET_CLASS(collec)->has_key(collec, ap);
va_end(ap);