svn commit: r249950 - head/bin/rm
Eitan Adler
eadler at FreeBSD.org
Fri Apr 26 17:56:36 UTC 2013
Author: eadler
Date: Fri Apr 26 17:56:35 2013
New Revision: 249950
URL: http://svnweb.freebsd.org/changeset/base/249950
Log:
Add two more 'static' qualifiers
Modified:
head/bin/rm/rm.c
Modified: head/bin/rm/rm.c
==============================================================================
--- head/bin/rm/rm.c Fri Apr 26 17:45:40 2013 (r249949)
+++ head/bin/rm/rm.c Fri Apr 26 17:56:35 2013 (r249950)
@@ -340,7 +340,7 @@ err:
fts_close(fts);
}
-void
+static void
rm_file(char **argv)
{
struct stat sb;
@@ -417,7 +417,7 @@ rm_file(char **argv)
* System V file system). In a logging or COW file system, you'll have to
* have kernel support.
*/
-int
+static int
rm_overwrite(const char *file, struct stat *sbp)
{
struct stat sb, sb2;
More information about the svn-src-head
mailing list