summaryrefslogtreecommitdiff
path: root/util/timehist.h
diff options
context:
space:
mode:
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 */