diff options
-rw-r--r-- | include/osmocom/core/utils.h | 2 | ||||
-rw-r--r-- | src/utils.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/core/utils.h b/include/osmocom/core/utils.h index f27359cb..f429ba6c 100644 --- a/include/osmocom/core/utils.h +++ b/include/osmocom/core/utils.h @@ -155,7 +155,7 @@ int osmo_print_n(char *buf, size_t bufsize, const char *str, size_t n); uint32_t osmo_isqrt32(uint32_t x); -const char osmo_luhn(const char* in, int in_len); +char osmo_luhn(const char* in, int in_len); /*! State for OSMO_STRBUF_APPEND() and OSMO_STRBUF_PRINTF(). See there for examples. */ struct osmo_strbuf { diff --git a/src/utils.c b/src/utils.c index c38f5305..7b7178ca 100644 --- a/src/utils.c +++ b/src/utils.c @@ -993,7 +993,7 @@ char *osmo_str_toupper_c(const void *ctx, const char *src) * \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; |