aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2019-01-15 13:43:45 +0100
committerMax <msuraev@sysmocom.de>2019-01-16 12:56:59 +0000
commit6b3cef08d29f45be3f828cf442cfe07bcd1e5a82 (patch)
tree2cddde8f0adb28bcc6e872d43324e2986f90f535
parent4813152691df910f9dbdb05d9e418be106c2cd14 (diff)
MNCC: use explicit struct type in gsm_call
There's no need to use 'void *' because we have forward declaration for 'struct gsm_network' in the very same header. Change-Id: I5078ffcf2706adaca1b5df107f8b6a44062ca28c
-rw-r--r--include/osmocom/msc/mncc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/osmocom/msc/mncc.h b/include/osmocom/msc/mncc.h
index d2f054147..a9be0048c 100644
--- a/include/osmocom/msc/mncc.h
+++ b/include/osmocom/msc/mncc.h
@@ -38,7 +38,7 @@ struct gsm_call {
struct llist_head entry;
/* network handle */
- void *net;
+ struct gsm_network *net;
/* the 'local' transaction */
uint32_t callref;