svn commit: r229102 - stable/9/lib/libpmc

Dimitry Andric dim at FreeBSD.org
Sat Dec 31 14:36:52 UTC 2011


Author: dim
Date: Sat Dec 31 14:36:51 2011
New Revision: 229102
URL: http://svn.freebsd.org/changeset/base/229102

Log:
  MFC r228557:
  
  In lib/libpmc/libpmc.c, struct pmc_cputype_map's pm_cputype field should
  be of type 'enum pmc_cputype', not 'enum pmc_class'.

Modified:
  stable/9/lib/libpmc/libpmc.c
Directory Properties:
  stable/9/lib/libpmc/   (props changed)

Modified: stable/9/lib/libpmc/libpmc.c
==============================================================================
--- stable/9/lib/libpmc/libpmc.c	Sat Dec 31 14:34:07 2011	(r229101)
+++ stable/9/lib/libpmc/libpmc.c	Sat Dec 31 14:36:51 2011	(r229102)
@@ -289,7 +289,7 @@ static const char * pmc_class_names[] = 
 };
 
 struct pmc_cputype_map {
-	enum pmc_class	pm_cputype;
+	enum pmc_cputype pm_cputype;
 	const char	*pm_name;
 };
 


More information about the svn-src-all mailing list