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
diff --git a/include/osmocom/msc/mncc.h b/include/osmocom/msc/mncc.h
index d2f0541..a9be004 100644
--- a/include/osmocom/msc/mncc.h
+++ b/include/osmocom/msc/mncc.h
@@ -38,7 +38,7 @@
 	struct llist_head entry;
 
 	/* network handle */
-	void *net;
+	struct gsm_network *net;
 
 	/* the 'local' transaction */
 	uint32_t callref;