comp128: mark ki and srand as 'const' input parameters
diff --git a/include/osmocom/gsm/comp128.h b/include/osmocom/gsm/comp128.h
index c37808f..e4587d4 100644
--- a/include/osmocom/gsm/comp128.h
+++ b/include/osmocom/gsm/comp128.h
@@ -16,7 +16,7 @@
  * sres  : uint8_t [4]
  * kc    : uint8_t [8]
  */
-void comp128(uint8_t *ki, uint8_t *srand, uint8_t *sres, uint8_t *kc);
+void comp128(const uint8_t *ki, const uint8_t *srand, uint8_t *sres, uint8_t *kc);
 
 #endif /* __COMP128_H__ */
 
diff --git a/src/gsm/comp128.c b/src/gsm/comp128.c
index 5d5680c..b7a2382 100644
--- a/src/gsm/comp128.c
+++ b/src/gsm/comp128.c
@@ -185,7 +185,7 @@
 }
 
 void
-comp128(uint8_t *ki, uint8_t *rand, uint8_t *sres, uint8_t *kc)
+comp128(const uint8_t *ki, const uint8_t *rand, uint8_t *sres, uint8_t *kc)
 {
 	int i;
 	uint8_t x[32], bits[128];