aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/src/dialyzer_analysis_callgraph.erl
diff options
context:
space:
mode:
authorKostis Sagonas <[email protected]>2012-08-24 14:09:11 +0200
committerKostis Sagonas <[email protected]>2012-08-24 14:09:11 +0200
commit3ce276a09e93493dce296737e3e86147381d4d96 (patch)
tree209aa0c97a67f3f0ce10caec4ceea94bdf271692 /lib/dialyzer/src/dialyzer_analysis_callgraph.erl
parentd3ba4c96e621d4e68e38926f051aadd2b0869dc9 (diff)
downloadotp-3ce276a09e93493dce296737e3e86147381d4d96.tar.gz
otp-3ce276a09e93493dce296737e3e86147381d4d96.tar.bz2
otp-3ce276a09e93493dce296737e3e86147381d4d96.zip
Changes to fix warnings identified by running dialyzer -Wunmatched_returns
Diffstat (limited to 'lib/dialyzer/src/dialyzer_analysis_callgraph.erl')
-rw-r--r--lib/dialyzer/src/dialyzer_analysis_callgraph.erl7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/dialyzer/src/dialyzer_analysis_callgraph.erl b/lib/dialyzer/src/dialyzer_analysis_callgraph.erl
index 496d317f8a..f42ce85b83 100644
--- a/lib/dialyzer/src/dialyzer_analysis_callgraph.erl
+++ b/lib/dialyzer/src/dialyzer_analysis_callgraph.erl
@@ -519,9 +519,10 @@ rcv_and_send_ext_types(Parent) ->
Self ! {Self, done},
case rcv_ext_types(Self, []) of
[] -> ok;
- ExtTypes -> Parent ! {Self, ext_types, ExtTypes}
- end,
- ok.
+ ExtTypes ->
+ Parent ! {Self, ext_types, ExtTypes},
+ ok
+ end.
rcv_ext_types(Self, ExtTypes) ->
receive