summaryrefslogtreecommitdiff
path: root/util/timehist.h
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2018-05-12 11:54:35 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2018-05-12 11:54:35 +0000
commit15de2de8449b4f5063f93578ae68aa0bc79a205c (patch)
treef0a7e3230212205e7ff88a2900de97026940f63c /util/timehist.h
parent689b65913bba5320ef50befddf4743c6dafde873 (diff)
Diffstat (limited to 'util/timehist.h')
-rw-r--r--util/timehist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/timehist.h b/util/timehist.h
index 5c65048b9bb3..5f88a38a9fdf 100644
--- a/util/timehist.h
+++ b/util/timehist.h
@@ -121,7 +121,7 @@ void timehist_log(struct timehist* hist, const char* name);
* @param array: the array to export to.
* @param sz: number of items in array.
*/
-void timehist_export(struct timehist* hist, size_t* array, size_t sz);
+void timehist_export(struct timehist* hist, long long* array, size_t sz);
/**
* Import histogram from an array.
@@ -129,6 +129,6 @@ void timehist_export(struct timehist* hist, size_t* array, size_t sz);
* @param array: the array to import from.
* @param sz: number of items in array.
*/
-void timehist_import(struct timehist* hist, size_t* array, size_t sz);
+void timehist_import(struct timehist* hist, long long* array, size_t sz);
#endif /* UTIL_TIMEHIST_H */