a_iface: correct data type for a.conn_id in gsm_subscriber_connection

conn_id is modeled as int, but should be uint32_t.

- change conn_id from int to uint32_t

Change-Id: Ibf14d7c9a547c4eeb873975e7dcddef223e7df46
Related: OS#2769
diff --git a/include/osmocom/msc/gsm_data.h b/include/osmocom/msc/gsm_data.h
index 16e83f3..2cddd25 100644
--- a/include/osmocom/msc/gsm_data.h
+++ b/include/osmocom/msc/gsm_data.h
@@ -212,7 +212,7 @@
 		/* The connection identifier that is used
 		 * to reference the SCCP connection that is
 		 * associated with this subscriber connection */
-		int conn_id;
+		uint32_t conn_id;
 	} a;
 };