svn commit: r259990 - in stable: 10/sys/kern 9/sys/kern
Dimitry Andric
dim at FreeBSD.org
Sat Dec 28 02:00:34 UTC 2013
Author: dim
Date: Sat Dec 28 02:00:33 2013
New Revision: 259990
URL: http://svnweb.freebsd.org/changeset/base/259990
Log:
MFC r259892:
In sys/kern/vfs_mountroot.c, remove static function parse_isspace(),
which is unused since r214006.
Modified:
stable/9/sys/kern/vfs_mountroot.c
Directory Properties:
stable/9/sys/ (props changed)
Changes in other areas also in this revision:
Modified:
stable/10/sys/kern/vfs_mountroot.c
Directory Properties:
stable/10/ (props changed)
Modified: stable/9/sys/kern/vfs_mountroot.c
==============================================================================
--- stable/9/sys/kern/vfs_mountroot.c Sat Dec 28 01:56:04 2013 (r259989)
+++ stable/9/sys/kern/vfs_mountroot.c Sat Dec 28 02:00:33 2013 (r259990)
@@ -389,13 +389,6 @@ parse_advance(char **conf)
(*conf)++;
}
-static __inline int
-parse_isspace(int c)
-{
-
- return ((c == ' ' || c == '\t' || c == '\n') ? 1 : 0);
-}
-
static int
parse_skipto(char **conf, int mc)
{
More information about the svn-src-stable-9
mailing list