aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-06-24 18:48:33 +0200
committerSchanzenbach, Martin <martin.schanzenbach@aisec.fraunhofer.de>2018-06-24 18:48:33 +0200
commit5de8b1d6e35e4c802cc25f7cbca7ba1154965b13 (patch)
treeb088538e45519c7f798f8af6972c01b0ae5ce897 /src/datastore
parent1981ffec4ad18287efe8ab693390e1d498de05bf (diff)
downloadgnunet-5de8b1d6e35e4c802cc25f7cbca7ba1154965b13.tar.gz
gnunet-5de8b1d6e35e4c802cc25f7cbca7ba1154965b13.zip
fix https://gnunet.org/bugs/view.php?id=4904
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index 80960c676..fc1706400 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -855,9 +855,10 @@ sqlite_plugin_get_zero_anonymity (void *cls,
855 void *proc_cls) 855 void *proc_cls)
856{ 856{
857 struct Plugin *plugin = cls; 857 struct Plugin *plugin = cls;
858 uint32_t type32 = type;
858 struct GNUNET_SQ_QueryParam params[] = { 859 struct GNUNET_SQ_QueryParam params[] = {
859 GNUNET_SQ_query_param_uint64 (&next_uid), 860 GNUNET_SQ_query_param_uint64 (&next_uid),
860 GNUNET_SQ_query_param_uint32 (&type), 861 GNUNET_SQ_query_param_uint32 (&type32),
861 GNUNET_SQ_query_param_end 862 GNUNET_SQ_query_param_end
862 }; 863 };
863 864