aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_api_unreliability.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2011-11-29 20:47:18 +0000
committerChristian Grothoff <christian@grothoff.org>2011-11-29 20:47:18 +0000
commit71ea5bd2d05058008e604ffd42993be9c7250e04 (patch)
treea5074671ddfaa9d1621a4182fc95a91a98b3d536 /src/transport/test_transport_api_unreliability.c
parentb335777fd435142c16eb05e86c8a64a4b1a45447 (diff)
downloadgnunet-71ea5bd2d05058008e604ffd42993be9c7250e04.tar.gz
gnunet-71ea5bd2d05058008e604ffd42993be9c7250e04.zip
-fixing indentation
Diffstat (limited to 'src/transport/test_transport_api_unreliability.c')
-rw-r--r--src/transport/test_transport_api_unreliability.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/transport/test_transport_api_unreliability.c b/src/transport/test_transport_api_unreliability.c
index 90defae02..e52b20f7c 100644
--- a/src/transport/test_transport_api_unreliability.c
+++ b/src/transport/test_transport_api_unreliability.c
@@ -229,10 +229,9 @@ get_size (unsigned int iter)
229 229
230#ifndef LINUX 230#ifndef LINUX
231 /* FreeBSD/OSX etc. Unix DGRAMs do not work 231 /* FreeBSD/OSX etc. Unix DGRAMs do not work
232 with large messages */ 232 * with large messages */
233 if (0 == strcmp ("unix", 233 if (0 == strcmp ("unix", test_plugin))
234 test_plugin)) 234 return sizeof (struct TestMessage) + (ret % 1024);
235 return sizeof (struct TestMessage) + (ret % 1024);
236#endif 235#endif
237 return sizeof (struct TestMessage) + (ret % 60000); 236 return sizeof (struct TestMessage) + (ret % 60000);
238} 237}