Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/kern Remove stray \t (pointed out by Kamil - thanks!



details:   https://anonhg.NetBSD.org/src/rev/70d8c919f689
branches:  trunk
changeset: 812088:70d8c919f689
user:      pgoyette <pgoyette%NetBSD.org@localhost>
date:      Mon Nov 30 22:58:15 2015 +0000

description:
Remove stray \t (pointed out by Kamil - thanks!

I'll fix the makesyscalls.sh script shortly.

diffstat:

 sys/kern/syscalls_autoload.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (25 lines):

diff -r b9c2180ab6e9 -r 70d8c919f689 sys/kern/syscalls_autoload.c
--- a/sys/kern/syscalls_autoload.c      Mon Nov 30 22:48:53 2015 +0000
+++ b/sys/kern/syscalls_autoload.c      Mon Nov 30 22:58:15 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: syscalls_autoload.c,v 1.9 2015/11/30 22:48:53 pgoyette Exp $ */
+/* $NetBSD: syscalls_autoload.c,v 1.10 2015/11/30 22:58:15 pgoyette Exp $ */
 
 /*
  * System call autoload table.
@@ -8,7 +8,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.9 2015/11/30 22:48:53 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls_autoload.c,v 1.10 2015/11/30 22:58:15 pgoyette Exp $");
 
 #include <sys/proc.h>
 static struct sc_auto netbsd_syscalls_autoload[] = {
@@ -176,5 +176,5 @@
            { SYS_____semctl50, "sysv_ipc" },
            { SYS___shmctl50, "sysv_ipc" },
            { SYS___msgctl50, "sysv_ipc" },
-\t    { 0, NULL }
+           { 0, NULL }
 };



Home | Main Index | Thread Index | Old Index