knf nits
authoranton <anton@openbsd.org>
Fri, 22 Oct 2021 05:03:57 +0000 (05:03 +0000)
committeranton <anton@openbsd.org>
Fri, 22 Oct 2021 05:03:57 +0000 (05:03 +0000)
regress/sys/kern/pipe/test-kqueue.c
regress/sys/kern/pipe/test-ping-pong.c
regress/sys/kern/pipe/test-run-down.c

index 36ad8d9..ede5bc9 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test-kqueue.c,v 1.3 2021/05/08 06:53:19 anton Exp $   */
+/*     $OpenBSD: test-kqueue.c,v 1.4 2021/10/22 05:03:57 anton Exp $   */
 
 /*
  * Copyright (c) 2019 Anton Lindqvist <anton@openbsd.org>
@@ -204,7 +204,6 @@ ctx_teardown(struct context *ctx)
        close(ctx->c_pipe[0]);
        close(ctx->c_pipe[1]);
        close(ctx->c_kq);
-
 }
 
 static int
@@ -238,7 +237,8 @@ ctx_lock(struct context *ctx)
                errc(1, error, "pthread_mutex_lock");
 }
 
-static void ctx_unlock(struct context *ctx)
+static void
+ctx_unlock(struct context *ctx)
 {
        int error;
 
index 41d02db..94686e2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test-ping-pong.c,v 1.1 2019/11/09 21:10:15 anton Exp $        */
+/*     $OpenBSD: test-ping-pong.c,v 1.2 2021/10/22 05:03:57 anton Exp $        */
 
 /*
  * Copyright (c) 2019 Anton Lindqvist <anton@openbsd.org>
@@ -71,7 +71,8 @@ test_ping_pong(void)
                        if (n == -1)
                                err(1, "[c] write");
                        if (n != sizeof(pong))
-                               errx(1, "[c] write: %ld < %zu", n, sizeof(pong));
+                               errx(1, "[c] write: %ld < %zu",
+                                   n, sizeof(pong));
 
                        nrounds--;
                }
@@ -103,7 +104,8 @@ test_ping_pong(void)
                        if (n == -1)
                                err(1, "[p] write");
                        if (n != sizeof(ping))
-                               errx(1, "[p] write: %ld < %zu", n, sizeof(ping));
+                               errx(1, "[p] write: %ld < %zu",
+                                   n, sizeof(ping));
 
                        n = read(rp, buf, sizeof(buf));
                        if (n == -1)
@@ -126,4 +128,3 @@ test_ping_pong(void)
 
        return 0;
 }
-
index f782126..56b9ee0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: test-run-down.c,v 1.2 2019/11/14 21:17:00 anton Exp $ */
+/*     $OpenBSD: test-run-down.c,v 1.3 2021/10/22 05:03:57 anton Exp $ */
 
 /*
  * Copyright (c) 2019 Anton Lindqvist <anton@openbsd.org>
@@ -132,7 +132,8 @@ ctx_lock(struct context *ctx)
                errc(1, error, "pthread_mutex_lock");
 }
 
-static void ctx_unlock(struct context *ctx)
+static void
+ctx_unlock(struct context *ctx)
 {
        int error;