diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-27 14:29:07 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-27 14:29:07 +0000 |
commit | d8b4c11622b216475eb16365853ccb89cf6f5b34 (patch) | |
tree | 96755084483e9863dcb403afcc7b800bd50dbcb1 /sbin | |
parent | 218a1d0c50fb2221ec75992501929562b656129a (diff) |
KNF nit: place brace correctly
ok florian
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/unwind/frontend.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/unwind/frontend.c b/sbin/unwind/frontend.c index 335492d4373..c241a6c82e9 100644 --- a/sbin/unwind/frontend.c +++ b/sbin/unwind/frontend.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frontend.c,v 1.74 2022/11/25 16:10:07 bluhm Exp $ */ +/* $OpenBSD: frontend.c,v 1.75 2022/11/27 14:29:06 tb Exp $ */ /* * Copyright (c) 2018 Florian Obser <florian@openbsd.org> @@ -996,7 +996,8 @@ synthesize_dns64_answer(struct pending_query *pq) } void -resend_dns64_query(struct pending_query *opq) { +resend_dns64_query(struct pending_query *opq) +{ struct pending_query *pq; struct query_imsg query_imsg; int rcode; |