Module Name: src Committed By: pgoyette Date: Mon Nov 30 22:58:15 UTC 2015
Modified Files: src/sys/kern: syscalls_autoload.c Log Message: Remove stray \t (pointed out by Kamil - thanks! I'll fix the makesyscalls.sh script shortly. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/kern/syscalls_autoload.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/syscalls_autoload.c diff -u src/sys/kern/syscalls_autoload.c:1.9 src/sys/kern/syscalls_autoload.c:1.10 --- src/sys/kern/syscalls_autoload.c:1.9 Mon Nov 30 22:48:53 2015 +++ src/sys/kern/syscalls_autoload.c Mon Nov 30 22:58:15 2015 @@ -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 @@ static struct sc_auto netbsd_syscalls_au { SYS_____semctl50, "sysv_ipc" }, { SYS___shmctl50, "sysv_ipc" }, { SYS___msgctl50, "sysv_ipc" }, -\t { 0, NULL } + { 0, NULL } };