aboutsummaryrefslogtreecommitdiff
path: root/src/ejabberd_debug.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/ejabberd_debug.erl')
-rw-r--r--src/ejabberd_debug.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ejabberd_debug.erl b/src/ejabberd_debug.erl
index f2152d851..84581eb38 100644
--- a/src/ejabberd_debug.erl
+++ b/src/ejabberd_debug.erl
@@ -46,7 +46,7 @@ pids() ->
lists:zf(
fun(Pid) ->
case process_info(Pid) of
- ProcessInfo when list(ProcessInfo) ->
+ ProcessInfo when is_list(ProcessInfo) ->
CurrentFunction = current_function(ProcessInfo),
InitialCall = initial_call(ProcessInfo),
RegisteredName = registered_name(ProcessInfo),