Skip to content

Commit

Permalink
Fix a syntax error in handle_info function.
Browse files Browse the repository at this point in the history
  • Loading branch information
kellymclaughlin committed Mar 15, 2011
1 parent 019a323 commit c555a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/riak_core_vnode.erl
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ handle_sync_event({handoff_data,BinObj}, _From, StateName,
State#state.inactivity_timeout}
end.

handle_info({'EXIT', _Pid, _Reason}, StateName, State#state{mod=Mod}) ->
handle_info({'EXIT', Pid, Reason}, StateName, State=#state{mod=Mod}) ->
%% A linked processes has died so use the
%% handle_exit callback to allow the vnode
%% process to take appropriate action.
Expand Down

0 comments on commit c555a5b

Please sign in to comment.