aboutsummaryrefslogtreecommitdiff
path: root/src/util/test_peer.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/util/test_peer.c
parentfceec98e767bce7ad2c24dde73cdcf8837e04013 (diff)
downloadgnunet-416c2f5a713b93ba689a8cd1e038682a53e6bc17.tar.gz
gnunet-416c2f5a713b93ba689a8cd1e038682a53e6bc17.zip
-LRN: use FPRINTF -- #2051
Diffstat (limited to 'src/util/test_peer.c')
-rw-r--r--src/util/test_peer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/test_peer.c b/src/util/test_peer.c
index 3817d8243..9bf443600 100644
--- a/src/util/test_peer.c
+++ b/src/util/test_peer.c
@@ -69,7 +69,7 @@ check ()
69 pid = GNUNET_PEER_intern (&pidArr[i]); 69 pid = GNUNET_PEER_intern (&pidArr[i]);
70 if (pid != (i + 1)) 70 if (pid != (i + 1))
71 { 71 {
72 fprintf (stderr, "Unexpected Peer ID returned by intern function\n"); 72 FPRINTF (stderr, "%s", "Unexpected Peer ID returned by intern function\n");
73 return 1; 73 return 1;
74 } 74 }
75 } 75 }
@@ -80,7 +80,7 @@ check ()
80 pid = GNUNET_PEER_intern (&pidArr[i]); 80 pid = GNUNET_PEER_intern (&pidArr[i]);
81 if (pid != (i + 1)) 81 if (pid != (i + 1))
82 { 82 {
83 fprintf (stderr, "Unexpected Peer ID returned by intern function\n"); 83 FPRINTF (stderr, "%s", "Unexpected Peer ID returned by intern function\n");
84 return 1; 84 return 1;
85 } 85 }
86 } 86 }