fix log line end in assignment_fsm.c

Change-Id: I4070ee9164eb161584df70ae174b538c394ab9cd
This commit is contained in:
Neels Hofmeyr 2019-03-14 23:00:42 +01:00
parent 0848ff84b7
commit c6699ac8d4
1 changed files with 1 additions and 1 deletions

View File

@ -563,7 +563,7 @@ static void assignment_fsm_wait_lchan_established_onenter(struct osmo_fsm_inst *
struct gsm_subscriber_connection *conn = assignment_fi_conn(fi);
/* Do we still need to wait for the RTP stream at all? */
if (lchan_state_is(conn->assignment.new_lchan, LCHAN_ST_ESTABLISHED)) {
LOG_ASSIGNMENT(conn, LOGL_DEBUG, "lchan fully established, no need to wait");
LOG_ASSIGNMENT(conn, LOGL_DEBUG, "lchan fully established, no need to wait\n");
assignment_fsm_post_lchan_established(fi);
}
}