diff options
author | Badlop <badlop@process-one.net> | 2013-09-26 17:19:56 +0200 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2013-09-26 17:19:56 +0200 |
commit | 2c09d7c8a74a2eddb6394f326986d3f775af9861 (patch) | |
tree | 05b16d2ff05505e030782e3bf154261858c5afa7 | |
parent | Fix bypass for tls-required (thanks to Zeha) (diff) |
Fix handling of format_status arguments (thanks to Nbaronov)
-rw-r--r-- | src/p1_fsm.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/p1_fsm.erl b/src/p1_fsm.erl index 885dc0223..70773e9b8 100644 --- a/src/p1_fsm.erl +++ b/src/p1_fsm.erl @@ -792,7 +792,7 @@ get_msg(Msg) -> Msg. %% Status information %%----------------------------------------------------------------- format_status(Opt, StatusData) -> - [PDict, SysState, Parent, Debug, [Name, StateName, StateData, Mod, _Time]] = + [PDict, SysState, Parent, Debug, [Name, StateName, StateData, Mod, _Time, _Limits, _Queue, _QueueLen]] = StatusData, NameTag = if is_pid(Name) -> pid_to_list(Name); |