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;
 };
 
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to