aboutsummaryrefslogtreecommitdiffstats
path: root/lib/et/src
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2011-08-17 13:35:39 +0200
committerHans Bolinder <[email protected]>2011-08-17 13:35:39 +0200
commit54f255d1c9a831447e19376054a5f87edef53159 (patch)
tree7cb47a12411de875be173d559fb40de8a73c9a07 /lib/et/src
parent46af29aac0e851105620dab25644cf27219e2b0a (diff)
downloadotp-54f255d1c9a831447e19376054a5f87edef53159.tar.gz
otp-54f255d1c9a831447e19376054a5f87edef53159.tar.bz2
otp-54f255d1c9a831447e19376054a5f87edef53159.zip
Remove Dialyzer warnings
Diffstat (limited to 'lib/et/src')
-rw-r--r--lib/et/src/et_wx_viewer.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/et/src/et_wx_viewer.erl b/lib/et/src/et_wx_viewer.erl
index 7d4286ed9d..386f8fc86b 100644
--- a/lib/et/src/et_wx_viewer.erl
+++ b/lib/et/src/et_wx_viewer.erl
@@ -257,10 +257,10 @@ parse_opt([H | T], S, CollectorOpt) ->
Actors = [create_actor(Name) || Name <- ActorNames2],
parse_opt(T, S#state{actors = Actors}, CollectorOpt);
{include, ActorNames} when is_list(ActorNames) ->
- Actors = [opt_create_actor(Name, include, S#state.actors) || Name <- ActorNames],
+ Actors = [opt_create_actor(Name, include, S) || Name <- ActorNames],
parse_opt(T, S#state{actors = Actors}, CollectorOpt);
{exclude, ActorNames} when is_list(ActorNames) ->
- Actors = [opt_create_actor(Name, exclude, S#state.actors) || Name <- ActorNames],
+ Actors = [opt_create_actor(Name, exclude, S) || Name <- ActorNames],
parse_opt(T, S#state{actors = Actors}, CollectorOpt);
{first_event, _FirstKey} ->
%% NYI