aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dialyzer/test/behaviour_SUITE_data
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2011-11-29 11:58:23 +0100
committerSiri Hansen <[email protected]>2011-11-30 10:38:01 +0100
commit466b964d3cd5cd599d1f9513f3b1a77156ad6578 (patch)
tree5d9e33368682dc2caae02feeb1b7ee0c60cada03 /lib/dialyzer/test/behaviour_SUITE_data
parent2b36dd726551cf822041b065df5d753ed0dba8b1 (diff)
downloadotp-466b964d3cd5cd599d1f9513f3b1a77156ad6578.tar.gz
otp-466b964d3cd5cd599d1f9513f3b1a77156ad6578.tar.bz2
otp-466b964d3cd5cd599d1f9513f3b1a77156ad6578.zip
Fix dialyzer warning about gen_event callback init/1 in log_mf_h
The warning is about log_mf_h having a different spec for gen_event callback init/1 than defined in gen_event.erl. log_mf_h allows return value {error,Reason}, while gen_even only specifies successful return values. This commit add {error,Reason} as a valid return value to the gen_event callback, since this is handled by the code.
Diffstat (limited to 'lib/dialyzer/test/behaviour_SUITE_data')
-rw-r--r--lib/dialyzer/test/behaviour_SUITE_data/results/gen_event_incorrect_return2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dialyzer/test/behaviour_SUITE_data/results/gen_event_incorrect_return b/lib/dialyzer/test/behaviour_SUITE_data/results/gen_event_incorrect_return
index 2afb5db133..e646eea383 100644
--- a/lib/dialyzer/test/behaviour_SUITE_data/results/gen_event_incorrect_return
+++ b/lib/dialyzer/test/behaviour_SUITE_data/results/gen_event_incorrect_return
@@ -1,2 +1,2 @@
-gen_event_incorrect_return.erl:16: The inferred return type of init/1 ('error') has nothing in common with {'ok',_} | {'ok',_,'hibernate'}, which is the expected return type for the callback of gen_event behaviour
+gen_event_incorrect_return.erl:16: The inferred return type of init/1 ('error') has nothing in common with {'error',_} | {'ok',_} | {'ok',_,'hibernate'}, which is the expected return type for the callback of gen_event behaviour