aboutsummaryrefslogtreecommitdiff
path: root/src/multihistogram.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2018-11-01 10:33:17 +0100
committerThomas White <taw@physics.org>2018-11-02 14:24:55 +0100
commited94e880540cf1cbc3903ec5ec1489e2b67ac0ca (patch)
treec45cf8f2c76de85ba1989b4db3ec9ba03c7e8c42 /src/multihistogram.h
parente1d6bf0cbd867573441d1c48dbbfed627b27af11 (diff)
Fix some warnings from static analyser
Diffstat (limited to 'src/multihistogram.h')
-rw-r--r--src/multihistogram.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/multihistogram.h b/src/multihistogram.h
index e4c2ae89..0949d259 100644
--- a/src/multihistogram.h
+++ b/src/multihistogram.h
@@ -40,7 +40,8 @@ extern MultiHistogram *multihistogram_new();
extern void multihistogram_free(MultiHistogram *hi);
extern void multihistogram_delete_all_values(MultiHistogram *hi);
-extern void multihistogram_add_value(MultiHistogram *hi, double val, int cat);
+extern void multihistogram_add_value(MultiHistogram *hi, double val,
+ unsigned int cat);
extern void multihistogram_set_min(MultiHistogram *hi, double min);
extern void multihistogram_set_max(MultiHistogram *hi, double max);