diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2016-03-06 22:41:25 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2016-03-06 22:41:25 +0000 |
commit | d9026f80ba76852242a532b85eeebd5d372deff3 (patch) | |
tree | 3ad625924aba6368b26b2580294f69b85a29b1e7 /sys/arch/amd64/stand | |
parent | a2b032bf6d07ddcc4fbe6abd5981942d76743994 (diff) |
Sync no-argument function declaration and definition by adding (void).
ok kettenis@ mpi@
Diffstat (limited to 'sys/arch/amd64/stand')
-rw-r--r-- | sys/arch/amd64/stand/libsa/pxe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/stand/libsa/pxe.c b/sys/arch/amd64/stand/libsa/pxe.c index 6502b84a711..e492b55d96b 100644 --- a/sys/arch/amd64/stand/libsa/pxe.c +++ b/sys/arch/amd64/stand/libsa/pxe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pxe.c,v 1.6 2014/08/21 14:24:08 mpi Exp $ */ +/* $OpenBSD: pxe.c,v 1.7 2016/03/06 22:41:24 naddy Exp $ */ /* $NetBSD: pxe.c,v 1.5 2003/03/11 18:29:00 drochner Exp $ */ /* @@ -202,7 +202,7 @@ static int pxe_inited; static struct iodesc desc; int -pxe_netif_open() +pxe_netif_open(void) { t_PXENV_UDP_OPEN *uo = (void *) pxe_command_buf; @@ -261,7 +261,7 @@ pxe_netif_close(sock) } void -pxe_netif_shutdown() +pxe_netif_shutdown(void) { #ifdef NETIF_DEBUG printf("pxe_netif_shutdown()\n"); |