diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2012-03-22 19:04:22 +0000 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2012-03-22 19:04:22 +0000 |
commit | f9f3805d9d1b7897c00f81f205008dbdaebf949b (patch) | |
tree | fb38ce35ebd87407f23c3c2998063530572f38c5 /lib/libpmc/pmc.h | |
parent | aefc71658f052223cfbe94a5ff41f06dddce5af4 (diff) | |
download | FreeBSD-src-f9f3805d9d1b7897c00f81f205008dbdaebf949b.zip FreeBSD-src-f9f3805d9d1b7897c00f81f205008dbdaebf949b.tar.gz |
Correct a function prototype.
Submitted by: "Anders Magnusson" <ragge at ludd.ltu.se>, via joel
Diffstat (limited to 'lib/libpmc/pmc.h')
-rw-r--r-- | lib/libpmc/pmc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpmc/pmc.h b/lib/libpmc/pmc.h index 2be88b1..e17a584 100644 --- a/lib/libpmc/pmc.h +++ b/lib/libpmc/pmc.h @@ -98,7 +98,7 @@ int pmc_npmc(int _cpu); int pmc_cpuinfo(const struct pmc_cpuinfo **_cpu_info); int pmc_pmcinfo(int _cpu, struct pmc_pmcinfo **_pmc_info); -const char *pmc_name_of_capability(uint32_t _c); +const char *pmc_name_of_capability(enum pmc_caps _c); const char *pmc_name_of_class(enum pmc_class _pc); const char *pmc_name_of_cputype(enum pmc_cputype _cp); const char *pmc_name_of_disposition(enum pmc_disp _pd); |