core/utils: drop meaningless const from return value of osmo_luhn()

Change-Id: I085da06f31a0a6862ae2ba041fafc134cc240f7e
diff --git a/src/utils.c b/src/utils.c
index c38f530..7b7178c 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -993,7 +993,7 @@
  * \param[in] in_len  Count of digits to use for the input (14 for IMEI).
  * \returns checksum char (e.g. '3'); negative on error
  */
-const char osmo_luhn(const char* in, int in_len)
+char osmo_luhn(const char* in, int in_len)
 {
 	int i, sum = 0;