aboutsummaryrefslogtreecommitdiff
path: root/src/datastore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-12-03 14:50:47 +0000
committerChristian Grothoff <christian@grothoff.org>2014-12-03 14:50:47 +0000
commit94a28fbbb8dc035613f34b5703499a8b36229250 (patch)
treeab8d20718219acfc6d48cac64168f337c323512c /src/datastore
parent8031f0e2bb9ffb4d9f46d29804514188de1c4027 (diff)
downloadgnunet-94a28fbbb8dc035613f34b5703499a8b36229250.tar.gz
gnunet-94a28fbbb8dc035613f34b5703499a8b36229250.zip
-fix misc compiler warnings
Diffstat (limited to 'src/datastore')
-rw-r--r--src/datastore/plugin_datastore_sqlite.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/datastore/plugin_datastore_sqlite.c b/src/datastore/plugin_datastore_sqlite.c
index 5ece7cd17..ae57c6aa0 100644
--- a/src/datastore/plugin_datastore_sqlite.c
+++ b/src/datastore/plugin_datastore_sqlite.c
@@ -496,8 +496,9 @@ sqlite_plugin_put (void *cls,
496 return GNUNET_SYSERR; 496 return GNUNET_SYSERR;
497 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "sqlite", 497 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, "sqlite",
498 "Storing in database block with type %u/key `%s'/priority %u/expiration in %s (%s).\n", 498 "Storing in database block with type %u/key `%s'/priority %u/expiration in %s (%s).\n",
499 type, GNUNET_h2s (key), priority, 499 type,
500 (unsigned long long) 500 GNUNET_h2s (key),
501 priority,
501 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_remaining (expiration), 502 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_remaining (expiration),
502 GNUNET_YES), 503 GNUNET_YES),
503 GNUNET_STRINGS_absolute_time_to_string (expiration)); 504 GNUNET_STRINGS_absolute_time_to_string (expiration));