Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Dec 2013 02:00:34 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r259990 - in stable: 10/sys/kern 9/sys/kern
Message-ID:  <201312280200.rBS20Y1t033463@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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/10/sys/kern/vfs_mountroot.c
Directory Properties:
  stable/10/   (props changed)

Changes in other areas also in this revision:
Modified:
  stable/9/sys/kern/vfs_mountroot.c
Directory Properties:
  stable/9/sys/   (props changed)

Modified: stable/10/sys/kern/vfs_mountroot.c
==============================================================================
--- stable/10/sys/kern/vfs_mountroot.c	Sat Dec 28 01:56:04 2013	(r259989)
+++ stable/10/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)
 {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312280200.rBS20Y1t033463>