rlc: Pass the gprs_rlc_data to the assemble function for assembly
diff --git a/src/tbf.cpp b/src/tbf.cpp
index d4aaca0..14e6e2a 100644
--- a/src/tbf.cpp
+++ b/src/tbf.cpp
@@ -708,9 +708,11 @@
  * Store received block data in LLC message(s) and forward to SGSN
  * if complete.
  */
-int gprs_rlcmac_tbf::assemble_forward_llc(uint8_t *data, uint8_t len)
+int gprs_rlcmac_tbf::assemble_forward_llc(const gprs_rlc_data *_data)
 {
-	struct rlc_ul_header *rh = (struct rlc_ul_header *)data;
+	const uint8_t *data = _data->block;
+	uint8_t len = _data->len;
+	const struct rlc_ul_header *rh = (const struct rlc_ul_header *) data;
 	uint8_t e, m;
 	struct rlc_li_field *li;
 	uint8_t frame_offset[16], offset = 0, chunk;
@@ -1731,7 +1733,7 @@
 			"V(Q) to %d\n", this->dir.ul.v_q,
 			(this->dir.ul.v_q + 1) & mod_sns);
 		/* get LLC data from block */
-		this->assemble_forward_llc(m_rlc.blocks[index].block, m_rlc.blocks[index].len);
+		this->assemble_forward_llc(&m_rlc.blocks[index]);
 		/* raise V(Q), because block already received */
 		this->dir.ul.v_q = (this->dir.ul.v_q + 1) & mod_sns;
 	}