stylefix
authorChristian Grothoff <christian@grothoff.org>
Thu, 30 Apr 2020 10:49:11 +0000 (12:49 +0200)
committerChristian Grothoff <christian@grothoff.org>
Thu, 30 Apr 2020 10:49:11 +0000 (12:49 +0200)
src/include/gnunet_common.h
src/util/test_scheduler.c

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));   \
   })
 
index 02a70a5605b201fe146d3f9971732c174f968484..471ca64e5face158e3d59ac708bdc4dc8cc89f51 100644 (file)
@@ -234,7 +234,7 @@ taskSig (void *cls)
  * checks that "ok" is correct at the end.
  */
 static int
-checkSignal ()
+checkSignal (void)
 {
   int ok;