Module Name: src
Committed By: palle
Date: Sat Jun 4 21:10:56 UTC 2016
Modified Files:
src/sys/kern: init_main.c
Log Message:
Added missing "it" to comment in start_init()
To generate a diff of this commit:
cvs rdiff -u -r1.480 -r1.481 src/sys/kern/init_main.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/init_main.c
diff -u src/sys/kern/init_main.c:1.480 src/sys/kern/init_main.c:1.481
--- src/sys/kern/init_main.c:1.480 Sun May 22 14:26:09 2016
+++ src/sys/kern/init_main.c Sat Jun 4 21:10:56 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: init_main.c,v 1.480 2016/05/22 14:26:09 christos Exp $ */
+/* $NetBSD: init_main.c,v 1.481 2016/06/04 21:10:56 palle Exp $ */
/*-
* Copyright (c) 2008, 2009 The NetBSD Foundation, Inc.
@@ -97,7 +97,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_main.c,v 1.480 2016/05/22 14:26:09 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_main.c,v 1.481 2016/06/04 21:10:56 palle Exp $");
#include "opt_ddb.h"
#include "opt_inet.h"
@@ -1044,7 +1044,7 @@ start_init(void *arg)
goto copyerr;
/*
- * Now try to exec the program. If can't for any reason
+ * Now try to exec the program. If it can't for any reason
* other than it doesn't exist, complain.
*/
error = sys_execve(l, &args, retval);