aboutsummaryrefslogtreecommitdiff
path: root/src/fs/fs_test_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/fs_test_lib.c')
-rw-r--r--src/fs/fs_test_lib.c13
1 files changed, 4 insertions, 9 deletions
diff --git a/src/fs/fs_test_lib.c b/src/fs/fs_test_lib.c
index 6bd156e8b..d03888021 100644
--- a/src/fs/fs_test_lib.c
+++ b/src/fs/fs_test_lib.c
@@ -183,8 +183,7 @@ struct TestDownloadOperation
183 * @param tc scheduler context (unused) 183 * @param tc scheduler context (unused)
184 */ 184 */
185static void 185static void
186report_uri (void *cls, 186report_uri (void *cls)
187 const struct GNUNET_SCHEDULER_TaskContext *tc)
188{ 187{
189 struct TestPublishOperation *po = cls; 188 struct TestPublishOperation *po = cls;
190 189
@@ -208,10 +207,9 @@ report_uri (void *cls,
208 * Task scheduled to run when publish operation times out. 207 * Task scheduled to run when publish operation times out.
209 * 208 *
210 * @param cls the publish operation context 209 * @param cls the publish operation context
211 * @param tc scheduler context (unused)
212 */ 210 */
213static void 211static void
214publish_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) 212publish_timeout (void *cls)
215{ 213{
216 struct TestPublishOperation *po = cls; 214 struct TestPublishOperation *po = cls;
217 215
@@ -480,10 +478,9 @@ GNUNET_FS_TEST_publish (struct GNUNET_TESTBED_Peer *peer,
480 * Task scheduled to run when download operation times out. 478 * Task scheduled to run when download operation times out.
481 * 479 *
482 * @param cls the download operation context 480 * @param cls the download operation context
483 * @param tc scheduler context (unused)
484 */ 481 */
485static void 482static void
486download_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc) 483download_timeout (void *cls)
487{ 484{
488 struct TestDownloadOperation *dop = cls; 485 struct TestDownloadOperation *dop = cls;
489 486
@@ -504,11 +501,9 @@ download_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
504 * Task scheduled to report on the completion of our download operation. 501 * Task scheduled to report on the completion of our download operation.
505 * 502 *
506 * @param cls the download operation context 503 * @param cls the download operation context
507 * @param tc scheduler context (unused)
508 */ 504 */
509static void 505static void
510report_success (void *cls, 506report_success (void *cls)
511 const struct GNUNET_SCHEDULER_TaskContext *tc)
512{ 507{
513 struct TestDownloadOperation *dop = cls; 508 struct TestDownloadOperation *dop = cls;
514 509