aboutsummaryrefslogtreecommitdiff
path: root/src/dv
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-14 11:42:12 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-14 11:42:12 +0100
commitcd475225e4fd83fcc16b77ea1294c11428447209 (patch)
tree173b2afdd9df62bcb0f8131403f187f4bdf6e0d9 /src/dv
parente8aa266d849901eafbfc58ba116e1a39fb15ae02 (diff)
downloadgnunet-cd475225e4fd83fcc16b77ea1294c11428447209.tar.gz
gnunet-cd475225e4fd83fcc16b77ea1294c11428447209.zip
fix misc clang compiler warnings
Diffstat (limited to 'src/dv')
-rw-r--r--src/dv/gnunet-service-dv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dv/gnunet-service-dv.c b/src/dv/gnunet-service-dv.c
index 7d101c8ae..3fbd0cc03 100644
--- a/src/dv/gnunet-service-dv.c
+++ b/src/dv/gnunet-service-dv.c
@@ -1530,7 +1530,7 @@ listen_set_union (void *cls,
1530 GNUNET_SET_OPERATION_UNION); 1530 GNUNET_SET_OPERATION_UNION);
1531 neighbor->set_op = GNUNET_SET_accept (request, 1531 neighbor->set_op = GNUNET_SET_accept (request,
1532 GNUNET_SET_RESULT_ADDED, 1532 GNUNET_SET_RESULT_ADDED,
1533 (struct GNUNET_SET_Option[]) { 0 }, 1533 (struct GNUNET_SET_Option[]) {{ 0 }},
1534 &handle_set_union_result, 1534 &handle_set_union_result,
1535 neighbor); 1535 neighbor);
1536 neighbor->consensus_insertion_offset = 0; 1536 neighbor->consensus_insertion_offset = 0;
@@ -1561,7 +1561,7 @@ initiate_set_union (void *cls)
1561 &neighbor->real_session_id, 1561 &neighbor->real_session_id,
1562 NULL, 1562 NULL,
1563 GNUNET_SET_RESULT_ADDED, 1563 GNUNET_SET_RESULT_ADDED,
1564 (struct GNUNET_SET_Option[]) { 0 }, 1564 (struct GNUNET_SET_Option[]) {{ 0 }},
1565 &handle_set_union_result, 1565 &handle_set_union_result,
1566 neighbor); 1566 neighbor);
1567 neighbor->consensus_insertion_offset = 0; 1567 neighbor->consensus_insertion_offset = 0;