You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2023/05/09 19:10:16 UTC

[couchdb] branch main updated: Remove extra unused variable (#4577)

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

chewbranca pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/main by this push:
     new 9b3fbf4c3 Remove extra unused variable (#4577)
9b3fbf4c3 is described below

commit 9b3fbf4c37f3467471ad38d5e495dd6686d04ff0
Author: Russell Branca <ch...@apache.org>
AuthorDate: Tue May 9 12:10:10 2023 -0700

    Remove extra unused variable (#4577)
    
    * Remove extra unused variable
---
 src/couch_log/src/couch_log_writer_stderr.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/couch_log/src/couch_log_writer_stderr.erl b/src/couch_log/src/couch_log_writer_stderr.erl
index 5c2c761fa..5204950b5 100644
--- a/src/couch_log/src/couch_log_writer_stderr.erl
+++ b/src/couch_log/src/couch_log_writer_stderr.erl
@@ -27,7 +27,7 @@ init() ->
 terminate(_, _St) ->
     ok.
 
-write(#log_entry{type = Type} = Entry, St) ->
+write(#log_entry{} = Entry, St) ->
     #log_entry{
         level = Level,
         pid = Pid,