Module Name: src
Committed By: matt
Date: Fri Mar 7 01:55:01 UTC 2014
Modified Files:
src/sys/kern: exec_aout.c
Log Message:
Remove spurious .
To generate a diff of this commit:
cvs rdiff -u -r1.39 -r1.40 src/sys/kern/exec_aout.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/exec_aout.c
diff -u src/sys/kern/exec_aout.c:1.39 src/sys/kern/exec_aout.c:1.40
--- src/sys/kern/exec_aout.c:1.39 Fri Mar 7 01:34:29 2014
+++ src/sys/kern/exec_aout.c Fri Mar 7 01:55:01 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: exec_aout.c,v 1.39 2014/03/07 01:34:29 christos Exp $ */
+/* $NetBSD: exec_aout.c,v 1.40 2014/03/07 01:55:01 matt Exp $ */
/*
* Copyright (c) 1993, 1994 Christopher G. Demetriou
@@ -31,7 +31,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: exec_aout.c,v 1.39 2014/03/07 01:34:29 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: exec_aout.c,v 1.40 2014/03/07 01:55:01 matt Exp $");
#ifdef _KERNEL_OPT
#include "opt_coredump.h"
@@ -62,7 +62,7 @@ static struct execsw exec_aout_execsw =
.u = {
.elf_probe_func = NULL,
},
- .es_emul = .&emul_netbsd,
+ .es_emul = &emul_netbsd,
.es_prio = EXECSW_PRIO_ANY,
.es_arglen = 0,
.es_copyargs = copyargs,