From 97bfa9f2304902e0a4b09f51f6e55ac67f6b836f Mon Sep 17 00:00:00 2001 From: rbuj Date: Thu, 14 Oct 2021 13:35:38 +0200 Subject: cppcheck: function parameters can be declared with const --- src/unit-category.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/unit-category.c') diff --git a/src/unit-category.c b/src/unit-category.c index 72f50d5..af4fb18 100644 --- a/src/unit-category.c +++ b/src/unit-category.c @@ -104,7 +104,7 @@ unit_category_get_units(UnitCategory *category) gboolean -unit_category_convert(UnitCategory *category, const MPNumber *x, Unit *x_units, Unit *z_units, MPNumber *z) +unit_category_convert(const UnitCategory *category, const MPNumber *x, Unit *x_units, Unit *z_units, MPNumber *z) { g_return_val_if_fail (category != NULL, FALSE); g_return_val_if_fail (x_units != NULL, FALSE); -- cgit v1.2.1