aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_quota_compliance.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-02-02 17:38:22 +0000
committerChristian Grothoff <christian@grothoff.org>2014-02-02 17:38:22 +0000
commit769c3e9561ea577ca167c74286a5cd092510a5cb (patch)
tree89c8ad4c414a61da8818b081889916ad0e06abaf /src/transport/test_quota_compliance.c
parentfdf369790b040af2ab491e80dab8eb1bb95151a2 (diff)
removing depreated 'priority' argument from GNUNET_TRANSPORT_notify_transmit_ready
Diffstat (limited to 'src/transport/test_quota_compliance.c')
-rw-r--r--src/transport/test_quota_compliance.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transport/test_quota_compliance.c b/src/transport/test_quota_compliance.c
index 0dfe27c644..e1dbc17b61 100644
--- a/src/transport/test_quota_compliance.c
+++ b/src/transport/test_quota_compliance.c
@@ -336,7 +336,7 @@ notify_ready (void *cls, size_t size, void *buf)
if (n < TOTAL_MSGS)
{
if (th == NULL)
- th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, s, 0,
+ th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, s,
TIMEOUT_TRANSMIT,
&notify_ready, NULL);
msg_scheduled = n;
@@ -384,7 +384,7 @@ static void
sendtask ()
{
start_time = GNUNET_TIME_absolute_get ();
- th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, get_size (0), 0,
+ th = GNUNET_TRANSPORT_notify_transmit_ready (p2->th, &p1->id, get_size (0),
TIMEOUT_TRANSMIT, &notify_ready,
NULL);
}