Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Dec 2011 00:13:43 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228557 - head/lib/libpmc
Message-ID:  <201112160013.pBG0Dhat077210@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Fri Dec 16 00:13:43 2011
New Revision: 228557
URL: http://svn.freebsd.org/changeset/base/228557

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

Modified:
  head/lib/libpmc/libpmc.c

Modified: head/lib/libpmc/libpmc.c
==============================================================================
--- head/lib/libpmc/libpmc.c	Fri Dec 16 00:04:28 2011	(r228556)
+++ head/lib/libpmc/libpmc.c	Fri Dec 16 00:13:43 2011	(r228557)
@@ -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;
 };
 



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