aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2011-12-06 21:52:09 +0100
committerHarald Welte <laforge@gnumonks.org>2011-12-06 21:52:09 +0100
commit39a287db7497180ffaf24c5d0de91a15e0fa0d5a (patch)
tree7529dda88d483cb09a023a9bc06861b7695a57b7 /include/osmocom
parent75524cbabd4d7a8cab45d00081fb258aad9267db (diff)
comp128: mark ki and srand as 'const' input parameters
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/gsm/comp128.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/gsm/comp128.h b/include/osmocom/gsm/comp128.h
index c37808f0..e4587d4f 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__ */