aboutsummaryrefslogtreecommitdiff
path: root/src/setu/gnunet-service-setu.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/setu/gnunet-service-setu.c')
-rw-r--r--src/setu/gnunet-service-setu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/setu/gnunet-service-setu.c b/src/setu/gnunet-service-setu.c
index 2d258bfc5..b01b897d8 100644
--- a/src/setu/gnunet-service-setu.c
+++ b/src/setu/gnunet-service-setu.c
@@ -1746,8 +1746,8 @@ full_sync_plausibility_check (struct Operation *op)
1746 { 1746 {
1747 LOG (GNUNET_ERROR_TYPE_ERROR, 1747 LOG (GNUNET_ERROR_TYPE_ERROR,
1748 "PROTOCOL VIOLATION: Received duplicate element in full receiving " 1748 "PROTOCOL VIOLATION: Received duplicate element in full receiving "
1749 "mode of operation this is not allowed! Duplicates: %lu\n", 1749 "mode of operation this is not allowed! Duplicates: %llu\n",
1750 duplicates); 1750 (unsigned long long) duplicates);
1751 GNUNET_break_op (0); 1751 GNUNET_break_op (0);
1752 fail_union_operation (op); 1752 fail_union_operation (op);
1753 return; 1753 return;
@@ -2184,10 +2184,10 @@ send_ibf (struct Operation *op,
2184 buckets_in_message, &msg[1], msg->ibf_counter_bit_length); 2184 buckets_in_message, &msg[1], msg->ibf_counter_bit_length);
2185 buckets_sent += buckets_in_message; 2185 buckets_sent += buckets_in_message;
2186 LOG (GNUNET_ERROR_TYPE_DEBUG, 2186 LOG (GNUNET_ERROR_TYPE_DEBUG,
2187 "ibf chunk size %u, %lu/%u sent\n", 2187 "ibf chunk size %u, %llu/%u sent\n",
2188 buckets_in_message, 2188 (unsigned int) buckets_in_message,
2189 buckets_sent, 2189 (unsigned long long) buckets_sent,
2190 ibf_size); 2190 (unsigned int) ibf_size);
2191 GNUNET_MQ_send (op->mq, ev); 2191 GNUNET_MQ_send (op->mq, ev);
2192 } 2192 }
2193 2193