Dialyzer clean

This commit is contained in:
Scott Lystig Fritchie 2014-08-30 22:14:08 +09:00
parent 7878d954c1
commit e9f16d7b1b
3 changed files with 5 additions and 3 deletions

View file

@ -27,7 +27,8 @@
-record(range, {
pn_start :: non_neg_integer(), % start page number
pn_end :: non_neg_integer(), % end page number
chains :: [flu_chain()]
%% chains :: [flu_chain()]
chains :: tuple()
}).
-record(proj, { % Projection

View file

@ -214,7 +214,7 @@ report_lost_race(LPN, Reason) ->
%% Perhaps it's an interesting event, but the rest of the system
%% should react correctly whenever this happens, so it shouldn't
%% 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

View file

@ -22,7 +22,8 @@
-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]).
-export([set_tails/2]).
-ifdef(TEST).