Dialyzer clean
This commit is contained in:
parent
7878d954c1
commit
e9f16d7b1b
3 changed files with 5 additions and 3 deletions
|
@ -27,7 +27,8 @@
|
||||||
-record(range, {
|
-record(range, {
|
||||||
pn_start :: non_neg_integer(), % start page number
|
pn_start :: non_neg_integer(), % start page number
|
||||||
pn_end :: non_neg_integer(), % end page number
|
pn_end :: non_neg_integer(), % end page number
|
||||||
chains :: [flu_chain()]
|
%% chains :: [flu_chain()]
|
||||||
|
chains :: tuple()
|
||||||
}).
|
}).
|
||||||
|
|
||||||
-record(proj, { % Projection
|
-record(proj, { % Projection
|
||||||
|
|
|
@ -214,7 +214,7 @@ report_lost_race(LPN, Reason) ->
|
||||||
%% Perhaps it's an interesting event, but the rest of the system
|
%% Perhaps it's an interesting event, but the rest of the system
|
||||||
%% should react correctly whenever this happens, so it shouldn't
|
%% should react correctly whenever this happens, so it shouldn't
|
||||||
%% ever cause an external consistency problem.
|
%% ever cause an external consistency problem.
|
||||||
error_logger:debug_msg("LPN ~p race lost: ~p\n", [LPN, Reason]).
|
error_logger:info_msg("LPN ~p race lost: ~p\n", [LPN, Reason]).
|
||||||
|
|
||||||
-endif. % TEST
|
-endif. % TEST
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,8 @@
|
||||||
|
|
||||||
-behaviour(gen_server).
|
-behaviour(gen_server).
|
||||||
|
|
||||||
-export([start_link/1, stop/1, stop/2,
|
-export([start_link/1, start_link/2, start_link/3,
|
||||||
|
stop/1, stop/2,
|
||||||
get/2, get/3, get_tails/2]).
|
get/2, get/3, get_tails/2]).
|
||||||
-export([set_tails/2]).
|
-export([set_tails/2]).
|
||||||
-ifdef(TEST).
|
-ifdef(TEST).
|
||||||
|
|
Loading…
Reference in a new issue