aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_startonly.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/transport/test_transport_startonly.c')
-rw-r--r--src/transport/test_transport_startonly.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport/test_transport_startonly.c b/src/transport/test_transport_startonly.c
index c6215c9bc..36d9b18d3 100644
--- a/src/transport/test_transport_startonly.c
+++ b/src/transport/test_transport_startonly.c
@@ -124,7 +124,7 @@ run (void *cls, char *const *args, const char *cfgfile,
124 timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL); 124 timeout_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
125 125
126 i = 1; 126 i = 1;
127 fprintf (stderr, "%i", i); 127 FPRINTF (stderr, "%i", i);
128 while (i <= ITERATIONS) 128 while (i <= ITERATIONS)
129 { 129 {
130 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting peer\n"); 130 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting peer\n");
@@ -147,12 +147,12 @@ run (void *cls, char *const *args, const char *cfgfile,
147 147
148 i++; 148 i++;
149 if (i <= ITERATIONS) 149 if (i <= ITERATIONS)
150 fprintf (stderr, "..%i", i); 150 FPRINTF (stderr, "..%i", i);
151 } 151 }
152 152
153 tth = GNUNET_TRANSPORT_TESTING_init (); 153 tth = GNUNET_TRANSPORT_TESTING_init ();
154 154
155 fprintf (stderr, "\n"); 155 FPRINTF (stderr, "%s", "\n");
156 end (); 156 end ();
157} 157}
158 158