Fix typo in osmo_fsm_log_addr()

Previously function parameter was ignored, fsm_log_addr was always set
to false.

Change-Id: I74f06eab2dfa81dbb95e01f0b4b26448fd1b98f8
This commit is contained in:
Max 2016-11-01 10:49:31 +01:00
parent 72e43f02c3
commit 61281f4c47
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static bool fsm_log_addr = true;
*/
void osmo_fsm_log_addr(bool log_addr)
{
fsm_log_addr = false;
fsm_log_addr = log_addr;
}
/*! \brief register a FSM with the core