summaryrefslogtreecommitdiff
path: root/src/couch/src/couch_event_sup.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/couch/src/couch_event_sup.erl')
-rw-r--r--src/couch/src/couch_event_sup.erl12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/couch/src/couch_event_sup.erl b/src/couch/src/couch_event_sup.erl
index 32f1b9b68..e9fc2e5db 100644
--- a/src/couch/src/couch_event_sup.erl
+++ b/src/couch/src/couch_event_sup.erl
@@ -20,8 +20,8 @@
-include_lib("couch/include/couch_db.hrl").
--export([start_link/3,start_link/4, stop/1]).
--export([init/1, terminate/2, handle_call/3, handle_cast/2, handle_info/2,code_change/3]).
+-export([start_link/3, start_link/4, stop/1]).
+-export([init/1, terminate/2, handle_call/3, handle_cast/2, handle_info/2, code_change/3]).
%
% Instead calling the
@@ -52,10 +52,10 @@ stop(Pid) ->
init({EventMgr, EventHandler, Args}) ->
case gen_event:add_sup_handler(EventMgr, EventHandler, Args) of
- ok ->
- {ok, {EventMgr, EventHandler}};
- {stop, Error} ->
- {stop, Error}
+ ok ->
+ {ok, {EventMgr, EventHandler}};
+ {stop, Error} ->
+ {stop, Error}
end.
terminate(_Reason, _State) ->