Skip to content

Commit

Permalink
Fix unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
dcorbacho committed Feb 3, 2020
1 parent dfa70f1 commit 0ce2d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/collectors/vm/prometheus_vm_system_info_collector.erl
Original file line number Diff line number Diff line change
Expand Up @@ -368,5 +368,5 @@ sum_alloc_block_list(Type, [{_, L} | Rest], Acc) ->
sum_alloc_block_list(Type, Rest, Value + Acc);
sum_alloc_block_list(Type, [_ | Rest], Acc) ->
sum_alloc_block_list(Type, Rest, Acc);
sum_alloc_block_list(Type, [], Acc) ->
sum_alloc_block_list(_Type, [], Acc) ->
Acc.

0 comments on commit 0ce2d79

Please sign in to comment.