fix incomplete initializer

This commit is contained in:
christos 2006-08-30 02:02:21 +00:00
parent 2e252670b5
commit df04aa6566
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: freebsd_exec.c,v 1.31 2005/12/11 12:20:02 christos Exp $ */
/* $NetBSD: freebsd_exec.c,v 1.32 2006/08/30 02:02:21 christos Exp $ */
/*
* Copyright (c) 1993, 1994 Christopher G. Demetriou
@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: freebsd_exec.c,v 1.31 2005/12/11 12:20:02 christos Exp $");
__KERNEL_RCSID(0, "$NetBSD: freebsd_exec.c,v 1.32 2006/08/30 02:02:21 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_syscall_debug.h"
@ -98,4 +98,6 @@ const struct emul emul_freebsd = {
NULL,
uvm_default_mapaddr,
NULL, /* e_usertrap */
NULL, /* e_sa */
};