You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2019/02/25 21:54:40 UTC

[couchdb-ken] 06/06: and the -else clauses

This is an automated email from the ASF dual-hosted git repository.

rnewson pushed a commit to branch else
in repository https://gitbox.apache.org/repos/asf/couchdb-ken.git

commit 9837a298641dafd0ffc5817af80233aec027fd48
Author: Robert Newson <rn...@apache.org>
AuthorDate: Mon Feb 25 21:54:21 2019 +0000

    and the -else clauses
---
 src/ken_server.erl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/ken_server.erl b/src/ken_server.erl
index f45acfb..5d9b29e 100644
--- a/src/ken_server.erl
+++ b/src/ken_server.erl
@@ -333,7 +333,7 @@ search_updated(Name, Doc, Seq, State) ->
         ok
     end.
 -else.
-search_updated(_Doc, _Seq, _State) ->
+search_updated(_Name, _Doc, _Seq, _State) ->
     ok.
 -endif.
 
@@ -350,7 +350,7 @@ st_updated(Name, Doc, Seq, State) ->
         ok
     end.
 -else.
-st_updated(_Doc, _Seq, _State) ->
+st_updated(_Name, _Doc, _Seq, _State) ->
     ok.
 -endif.