diff options
| -rw-r--r-- | src/file_handle_cache.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file_handle_cache.erl b/src/file_handle_cache.erl index c788133984..ed6394de5b 100644 --- a/src/file_handle_cache.erl +++ b/src/file_handle_cache.erl @@ -147,7 +147,7 @@ last_sync_offset/1, current_virtual_offset/1, current_raw_offset/1, flush/1, copy/3, set_maximum_since_use/1, delete/1, clear/1]). -export([obtain/0, transfer/1, set_limit/1, get_limit/0, get_obtain_count/0, - get_obtain_limit/0]). + get_obtain_limit/0]). -export([ulimit/0]). -export([start_link/0, init/1, handle_call/3, handle_cast/2, handle_info/2, @@ -888,10 +888,10 @@ handle_call({set_limit, Limit}, _From, State) -> handle_call(get_limit, _From, State = #fhc_state { limit = Limit }) -> {reply, Limit, State}; handle_call(get_obtain_count, _From, - State = #fhc_state { obtain_count = Count }) -> + State = #fhc_state { obtain_count = Count }) -> {reply, Count, State}; handle_call(get_obtain_limit, _From, - State = #fhc_state { obtain_limit = Limit }) -> + State = #fhc_state { obtain_limit = Limit }) -> {reply, Limit, State}. handle_cast({register_callback, Pid, MFA}, |
