From 31106e66bd2b09c833827b2707d8ba9fc24e6261 Mon Sep 17 00:00:00 2001 From: tb Date: Fri, 14 Apr 2023 15:31:17 +0000 Subject: [PATCH] Add two missing void to appease clang 15 There is another thing clang 15 is whining about - this will be resolved in upcoming work by dv. ok dv --- usr.sbin/vmd/i8253.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.sbin/vmd/i8253.c b/usr.sbin/vmd/i8253.c index 6ece8a331d3..b98e7bdc69a 100644 --- a/usr.sbin/vmd/i8253.c +++ b/usr.sbin/vmd/i8253.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i8253.c,v 1.36 2022/11/10 18:58:02 mbuhl Exp $ */ +/* $OpenBSD: i8253.c,v 1.37 2023/04/14 15:31:17 tb Exp $ */ /* * Copyright (c) 2016 Mike Larkin * @@ -418,7 +418,7 @@ i8253_restore(int fd, uint32_t vm_id) } void -i8253_stop() +i8253_stop(void) { int i; for (i = 0; i < 3; i++) @@ -427,7 +427,7 @@ i8253_stop() } void -i8253_start() +i8253_start(void) { int i; for (i = 0; i < 3; i++) -- 2.20.1