aboutsummaryrefslogtreecommitdiff
path: root/src/transport/transport-testing-communicator.c
diff options
context:
space:
mode:
authorMartin Schanzenbach <schanzen@gnunet.org>2023-10-05 07:56:35 +0200
committerMartin Schanzenbach <schanzen@gnunet.org>2023-10-05 07:56:35 +0200
commit53e3a0e32e24629b25a64d7572bc350f69608fac (patch)
treef33043aac7f2d8fbf44a7540d9d25217ecbb912a /src/transport/transport-testing-communicator.c
parent96c6d62c6a149b0645b6a2a487a7e24e09b5fbc9 (diff)
downloadgnunet-53e3a0e32e24629b25a64d7572bc350f69608fac.tar.gz
gnunet-53e3a0e32e24629b25a64d7572bc350f69608fac.zip
Fix warnings; CADET not FTBFS because old hello removed
Diffstat (limited to 'src/transport/transport-testing-communicator.c')
-rw-r--r--src/transport/transport-testing-communicator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/transport-testing-communicator.c b/src/transport/transport-testing-communicator.c
index 26895e457..196dbdc39 100644
--- a/src/transport/transport-testing-communicator.c
+++ b/src/transport/transport-testing-communicator.c
@@ -1203,7 +1203,7 @@ GNUNET_TRANSPORT_TESTING_transport_communicator_send
1203 if (last_queue != tc_queue) 1203 if (last_queue != tc_queue)
1204 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1204 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1205 "Selected sending queue changed to %u with length %lu and MTU %u\n", 1205 "Selected sending queue changed to %u with length %lu and MTU %u\n",
1206 ntohl (tc_queue->qid), tc_queue->q_len, tc_queue->mtu); 1206 ntohl (tc_queue->qid), (unsigned long) tc_queue->q_len, tc_queue->mtu);
1207 GNUNET_assert (NULL != tc_queue); 1207 GNUNET_assert (NULL != tc_queue);
1208 last_queue = tc_queue; 1208 last_queue = tc_queue;
1209 // Uncomment this for alternativ 1 of backchannel functionality 1209 // Uncomment this for alternativ 1 of backchannel functionality
@@ -1215,7 +1215,7 @@ GNUNET_TRANSPORT_TESTING_transport_communicator_send
1215 if (msg_count % 100 == 0) 1215 if (msg_count % 100 == 0)
1216 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 1216 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1217 "Sending %u-th (%lu-th for queue) message on queue %u\n", 1217 "Sending %u-th (%lu-th for queue) message on queue %u\n",
1218 msg_count, tc_queue->mid, ntohl (tc_queue->qid)); 1218 msg_count, (unsigned long) tc_queue->mid, ntohl (tc_queue->qid));
1219 inbox_size = sizeof (struct GNUNET_MessageHeader) + payload_size; 1219 inbox_size = sizeof (struct GNUNET_MessageHeader) + payload_size;
1220 env = GNUNET_MQ_msg_extra (msg, 1220 env = GNUNET_MQ_msg_extra (msg,
1221 inbox_size, 1221 inbox_size,