fix !amd64 signature for pmu_sample_rate_get

This commit is contained in:
Matt Macy 2018-05-24 04:38:17 +00:00
parent 14d13423dd
commit 341890e07d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=334130

View File

@ -124,5 +124,5 @@ pmcstat_pmu_sample_rate_get(const char *event_name)
}
#else
uint64_t pmcstat_pmu_sample_rate_get(void) { return (DEFAULT_SAMPLE_COUNT); }
uint64_t pmcstat_pmu_sample_rate_get(const char *event_name __unused) { return (DEFAULT_SAMPLE_COUNT); }
#endif