cosmetic: fix whitespace

Change-Id: I45bbe4d3c69d573aaff010d16f338c7ec3eaf08a
This commit is contained in:
Pau Espin 2019-09-25 17:48:35 +02:00
parent e13cdc503e
commit 488aa29083
4 changed files with 4 additions and 5 deletions

View File

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <osmocom/core/timer_compat.h>
#include <gprs_rlcmac.h>
@ -189,4 +189,3 @@ int gprs_rlcmac_dl_bw(struct gprs_rlcmac_dl_tbf *tbf, uint16_t octets)
return 0;
}

View File

@ -16,7 +16,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <gprs_bssgp_pcu.h>
#include <gprs_rlcmac.h>
#include <pcu_l1_if.h>

View File

@ -395,7 +395,7 @@ int gprs_rlcmac_ul_tbf::snd_ul_ud()
m_llc.reset_frame_space();
return -EIO;
}
llc_pdu = msgb_alloc_headroom(msg_len, msg_len,"llc_pdu");
uint8_t *buf = msgb_push(llc_pdu, TL16V_GROSS_LEN(sizeof(uint8_t)*m_llc.frame_length()));
tl16v_put(buf, BSSGP_IE_LLC_PDU, sizeof(uint8_t)*m_llc.frame_length(), m_llc.frame);

View File

@ -88,7 +88,7 @@ static void test_llc(void)
llc.append_frame(data, llc.remaining_space() - 1);
OSMO_ASSERT(llc.fits_in_current_frame(1));
OSMO_ASSERT(!llc.fits_in_current_frame(2));
}
}
}
static void test_rlc()