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
This commit is contained in:
Dimitry Andric 2011-12-16 00:13:43 +00:00
parent 487d088e4e
commit 562fc14bc9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228557

View File

@ -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;
};