You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2017/03/01 16:38:03 UTC

[05/50] fabric commit: updated refs/heads/2971-count-distinct to 5d18415

fix compilation warnings of unused variables


Project: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/commit/b17c8801
Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/tree/b17c8801
Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fabric/diff/b17c8801

Branch: refs/heads/2971-count-distinct
Commit: b17c8801b3bfe764d6da8983fafb5ad803d47bcc
Parents: ebea1b8
Author: Robert Newson <rn...@apache.org>
Authored: Tue Jul 12 15:04:23 2016 +0100
Committer: Robert Newson <rn...@apache.org>
Committed: Tue Jul 12 15:04:23 2016 +0100

----------------------------------------------------------------------
 src/fabric_db_update_listener.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-fabric/blob/b17c8801/src/fabric_db_update_listener.erl
----------------------------------------------------------------------
diff --git a/src/fabric_db_update_listener.erl b/src/fabric_db_update_listener.erl
index ba9111d..733be89 100644
--- a/src/fabric_db_update_listener.erl
+++ b/src/fabric_db_update_listener.erl
@@ -85,7 +85,7 @@ handle_db_event(_DbName, updated, #cb_state{notify = true} = St) ->
     {ok, St};
 handle_db_event(_DbName, deleted, St) ->
     {stop, St};
-handle_db_event(DbName, Event, St) ->
+handle_db_event(_DbName, _Event, St) ->
     {ok, St}.
 
 start_cleanup_monitor(Parent, Notifiers) ->