stylefix
[oweals/gnunet.git] / src / include / gnunet_common.h
index 033a688947acb82df0f657238aa648e30c692ea3..34f419a49b47598cb3588b117da9ab0e89b4119c 100644 (file)
@@ -1210,7 +1210,7 @@ GNUNET_is_zero_ (const void *a,
  * @param type name of the struct or union, i.e. pass 'struct Foo'.
  */
 #define GNUNET_new_array(n, type) ({ \
-    GNUNET_assert (SIZE_MAX / sizeof (type) >= n); \
+    GNUNET_assert (SIZE_MAX / sizeof (type) >= n);     \
     (type *) GNUNET_malloc ((n) * sizeof(type));   \
   })