Module Name: src
Committed By: dholland
Date: Wed Aug 29 18:56:40 UTC 2012
Modified Files:
src/sys/kern: kern_exec.c
Log Message:
Add missing newline to printf (in the disabled code for $ORIGIN).
To generate a diff of this commit:
cvs rdiff -u -r1.354 -r1.355 src/sys/kern/kern_exec.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/kern_exec.c
diff -u src/sys/kern/kern_exec.c:1.354 src/sys/kern/kern_exec.c:1.355
--- src/sys/kern/kern_exec.c:1.354 Fri Jul 27 20:52:49 2012
+++ src/sys/kern/kern_exec.c Wed Aug 29 18:56:39 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: kern_exec.c,v 1.354 2012/07/27 20:52:49 christos Exp $ */
+/* $NetBSD: kern_exec.c,v 1.355 2012/08/29 18:56:39 dholland Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -59,7 +59,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.354 2012/07/27 20:52:49 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: kern_exec.c,v 1.355 2012/08/29 18:56:39 dholland Exp $");
#include "opt_exec.h"
#include "opt_ktrace.h"
@@ -1079,7 +1079,7 @@ execve_runproc(struct lwp *l, struct exe
#endif
else {
#ifdef notyet
- printf("Cannot get path for pid %d [%s] (error %d)",
+ printf("Cannot get path for pid %d [%s] (error %d)\n",
(int)p->p_pid, p->p_comm, error);
#endif
data->ed_pack.ep_path = NULL;