fixing small conflicts

This commit is contained in:
Ismael Gomez 2017-07-13 13:51:09 +01:00
parent c9ced0b2e1
commit 639227557f
1 changed files with 3 additions and 3 deletions

View File

@ -218,7 +218,7 @@ uint32_t rlc_am::get_total_buffer_state()
// Room needed for fixed header?
if(n_bytes > 0) {
n_bytes += 2;
log->debug("Total buffer state LCID=%d - tx SDUs: %d bytes\n", lcid, n_bytes);
log->debug("Buffer state - tx SDUs: %d bytes\n", n_bytes);
}
pthread_mutex_unlock(&mutex);
@ -235,7 +235,7 @@ uint32_t rlc_am::get_buffer_state()
check_reordering_timeout();
if(do_status && !status_prohibited()) {
n_bytes = prepare_status();
log->debug("Buffer state LCID=%d - status report: %d bytes\n", lcid, n_bytes);
log->debug("Buffer state - status report: %d bytes\n", n_bytes);
goto unlock_and_return;
}
@ -268,7 +268,7 @@ uint32_t rlc_am::get_buffer_state()
// Room needed for fixed header?
if(n_bytes > 0) {
n_bytes += 2;
log->debug("Buffer state LCID=%d - tx SDUs: %d bytes\n", lcid, n_bytes);
log->debug("Buffer state - tx SDUs: %d bytes\n", n_bytes);
}
unlock_and_return: