handling replies continuously from server
[oweals/gnunet.git] / src / util / test_common_allocation.c
index 2fb1329b130d4c28db578aac779c1ecf47e6b576..438d39751fe8322354a5b4d8e0b28b7d1094e927 100644 (file)
@@ -36,21 +36,21 @@ check ()
   unsigned int ui;
 
   /* GNUNET_malloc/GNUNET_free test */
-  k = 352;                     /* random start value */
+  k = 352;                      /* random start value */
   for (i = 1; i < MAX_TESTVAL; i++)
-    {
-      ptrs[i] = GNUNET_malloc (i);
-      for (j = 0; j < i; j++)
-       ptrs[i][j] = k++;
-    }
+  {
+    ptrs[i] = GNUNET_malloc (i);
+    for (j = 0; j < i; j++)
+      ptrs[i][j] = k++;
+  }
 
   for (i = MAX_TESTVAL - 1; i >= 1; i--)
-    {
-      for (j = i - 1; j >= 0; j--)
-       if (ptrs[i][j] != (char) --k)
-         return 1;
-      GNUNET_free (ptrs[i]);
-    }
+  {
+    for (j = i - 1; j >= 0; j--)
+      if (ptrs[i][j] != (char) --k)
+        return 1;
+    GNUNET_free (ptrs[i]);
+  }
 
   /* GNUNET_free_non_null test */
   GNUNET_free_non_null (NULL);
@@ -105,7 +105,7 @@ main (int argc, char *argv[])
   GNUNET_log_setup ("test-common-allocation", "WARNING", NULL);
   ret = check ();
   if (ret != 0)
-    fprintf (stderr, "ERROR %d.\n", ret);
+    FPRINTF (stderr, "ERROR %d.\n", ret);
   return ret;
 }