Make a couple of functions conform to the prototype, restoring buildability.

This commit is contained in:
he 2009-03-17 00:18:40 +00:00
parent 715f7f5caa
commit 62f5486c1b
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: bootpref.c,v 1.5 2009/03/14 21:04:07 dsl Exp $ */
/* $NetBSD: bootpref.c,v 1.6 2009/03/17 00:18:40 he Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
@ -379,7 +379,7 @@ getNVpref (int fd, u_char bootpref[])
}
static void
setNVpref (int fd, u_char bootpref[], set, int verbose)
setNVpref (int fd, u_char bootpref[], int set, int verbose)
{
/* Boot OS */
if (set & SET_OS) {

View File

@ -1,4 +1,4 @@
/* $NetBSD: diskio.c,v 1.7 2009/03/14 21:04:07 dsl Exp $ */
/* $NetBSD: diskio.c,v 1.8 2009/03/17 00:18:40 he Exp $ */
/*
* Copyright (c) 1995 Waldi Ravens.
@ -105,7 +105,7 @@ rootstrategy (void *devd, int flag, daddr_t dblk, size_t size, void *buf, size_t
}
static int
rootopen (struct open_file *f)
rootopen (struct open_file *f, ...)
{
return(0);
}