Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Oct 2008 06:34:41 +0000 (UTC)
From:      Maxim Sobolev <sobomax@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r184324 - head/sys/kern
Message-ID:  <200810270634.m9R6YfLG030255@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sobomax
Date: Mon Oct 27 06:34:41 2008
New Revision: 184324
URL: http://svn.freebsd.org/changeset/base/184324

Log:
  vm_pnames has no reason to be global.
  
  MFC after:	2 weeks

Modified:
  head/sys/kern/subr_param.c

Modified: head/sys/kern/subr_param.c
==============================================================================
--- head/sys/kern/subr_param.c	Mon Oct 27 06:25:02 2008	(r184323)
+++ head/sys/kern/subr_param.c	Mon Oct 27 06:34:41 2008	(r184324)
@@ -118,7 +118,7 @@ SYSCTL_ULONG(_kern, OID_AUTO, sgrowsiz, 
  */
 struct	buf *swbuf;
 
-char *vm_pnames[] = {
+static char *vm_pnames[] = {
 	"VMware Virtual Platform",	/* VMWare VM */
 	"Virtual Machine",		/* Microsoft VirtualPC */
 	"VirtualBox",			/* Sun xVM VirtualBox */



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