aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorChristophe Genevey Metat <genevey.christophe@gmail.com>2016-06-24 14:54:09 +0000
committerChristophe Genevey Metat <genevey.christophe@gmail.com>2016-06-24 14:54:09 +0000
commit4c1969ee4afbb673085e1850f4bf6d5c3950344b (patch)
tree2510f11092dbdd93ed817c8f5de5b91f2fccef66 /src/datastore
parentce6319e302eb86087bd15bdc9b44746c23a1c0f1 (diff)
downloadgnunet-4c1969ee4afbb673085e1850f4bf6d5c3950344b.tar.gz
gnunet-4c1969ee4afbb673085e1850f4bf6d5c3950344b.zip
fix plugin datastore mysql
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/plugin_datastore_mysql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/datastore/plugin_datastore_mysql.c b/src/datastore/plugin_datastore_mysql.c
index ff21db7e5..bae40d17d 100644
--- a/src/datastore/plugin_datastore_mysql.c
+++ b/src/datastore/plugin_datastore_mysql.c
@@ -401,7 +401,7 @@ mysql_plugin_update (void *cls, uint64_t uid, int delta,
401 401
402 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 402 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
403 "Updating value %llu adding %d to priority and maxing exp at %s\n", 403 "Updating value %llu adding %d to priority and maxing exp at %s\n",
404 uid, delta, 404 (unsigned long long)uid, delta,
405 GNUNET_STRINGS_absolute_time_to_string (expire)); 405 GNUNET_STRINGS_absolute_time_to_string (expire));
406 406
407 struct GNUNET_MY_QueryParam params_update[] = { 407 struct GNUNET_MY_QueryParam params_update[] = {
@@ -419,7 +419,7 @@ mysql_plugin_update (void *cls, uint64_t uid, int delta,
419 if (ret != GNUNET_OK) 419 if (ret != GNUNET_OK)
420 { 420 {
421 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Failed to update value %llu\n", 421 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Failed to update value %llu\n",
422 uid); 422 (unsigned long long) uid);
423 } 423 }
424 cont (cont_cls, ret, NULL); 424 cont (cont_cls, ret, NULL);
425} 425}