aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-01-14 11:18:23 +0100
committerPau Espin Pedrol <pespin@sysmocom.de>2021-01-14 11:26:15 +0100
commit101fba211a87b17c5d9359ac05967c7118dfdd72 (patch)
tree432f30b47c3f4bd3b0881ec31ce6c9bf74519766
parent96a94bc4825639702d30039c7d7d668bbd60fb97 (diff)
tests/hnb-test-ranap: Fix incorrect signedness in pointer
-rw-r--r--src/tests/hnb-test-ranap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/hnb-test-ranap.c b/src/tests/hnb-test-ranap.c
index fe7db48..3db876c 100644
--- a/src/tests/hnb-test-ranap.c
+++ b/src/tests/hnb-test-ranap.c
@@ -16,7 +16,7 @@ void hnb_test_rua_dt_handle_ranap(struct hnb_test *hnb,
struct ranap_message_s *ranap_msg)
{
int len;
- char *data;
+ uint8_t *data;
RANAP_PermittedIntegrityProtectionAlgorithms_t *algs;
RANAP_IntegrityProtectionAlgorithm_t *first_alg;