aboutsummaryrefslogtreecommitdiff
path: root/src/dht/test_dht_twopeer_path_tracking.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-12-30 22:42:04 +0000
committerChristian Grothoff <christian@grothoff.org>2011-12-30 22:42:04 +0000
commit416c2f5a713b93ba689a8cd1e038682a53e6bc17 (patch)
tree987f51d9edfddc02afe1524df5e1156b920c71d4 /src/dht/test_dht_twopeer_path_tracking.c
parentfceec98e767bce7ad2c24dde73cdcf8837e04013 (diff)
downloadgnunet-416c2f5a713b93ba689a8cd1e038682a53e6bc17.tar.gz
gnunet-416c2f5a713b93ba689a8cd1e038682a53e6bc17.zip
-LRN: use FPRINTF -- #2051
Diffstat (limited to 'src/dht/test_dht_twopeer_path_tracking.c')
-rw-r--r--src/dht/test_dht_twopeer_path_tracking.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/dht/test_dht_twopeer_path_tracking.c b/src/dht/test_dht_twopeer_path_tracking.c
index 61a3df0a4..c30a3f327 100644
--- a/src/dht/test_dht_twopeer_path_tracking.c
+++ b/src/dht/test_dht_twopeer_path_tracking.c
@@ -219,17 +219,17 @@ get_result_iterator (void *cls, struct GNUNET_TIME_Absolute exp,
219#if VERBOSE 219#if VERBOSE
220 if (put_path != NULL) 220 if (put_path != NULL)
221 { 221 {
222 fprintf (stderr, "PUT Path: "); 222 FPRINTF (stderr, "%s", "PUT Path: ");
223 for (i = 0; i < put_path_length; i++) 223 for (i = 0; i < put_path_length; i++)
224 fprintf (stderr, "%s%s", i == 0 ? "" : "->", GNUNET_i2s (&put_path[i])); 224 FPRINTF (stderr, "%s%s", i == 0 ? "" : "->", GNUNET_i2s (&put_path[i]));
225 fprintf (stderr, "\n"); 225 FPRINTF (stderr, "%s", "\n");
226 } 226 }
227 if (get_path != NULL) 227 if (get_path != NULL)
228 { 228 {
229 fprintf (stderr, "GET Path: "); 229 FPRINTF (stderr, "%s", "GET Path: ");
230 for (i = 0; i < get_path_length; i++) 230 for (i = 0; i < get_path_length; i++)
231 fprintf (stderr, "%s%s", i == 0 ? "" : "->", GNUNET_i2s (&get_path[i])); 231 FPRINTF (stderr, "%s%s", i == 0 ? "" : "->", GNUNET_i2s (&get_path[i]));
232 fprintf (stderr, "\n"); 232 FPRINTF (stderr, "%s", "\n");
233 } 233 }
234#endif 234#endif
235 235