fix !amd64 signature for pmu_sample_rate_get

This commit is contained in:
mmacy 2018-05-24 04:38:17 +00:00
parent 97b23c16eb
commit 64f67c4338

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