You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ji...@apache.org on 2019/12/04 07:33:32 UTC

[couchdb] branch sm60-davisp updated: Fixup: address link issue of couchjs for windows

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

jiangphcn pushed a commit to branch sm60-davisp
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/sm60-davisp by this push:
     new e00ff51  Fixup: address link issue of couchjs for windows
e00ff51 is described below

commit e00ff5156c8ad73bc4b91aa3282b77dd6a1a1e5f
Author: jiangph <ji...@cn.ibm.com>
AuthorDate: Wed Dec 4 15:32:44 2019 +0800

    Fixup: address link issue of couchjs for windows
---
 src/couch/priv/couch_js/60/http.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/couch/priv/couch_js/60/http.cpp b/src/couch/priv/couch_js/60/http.cpp
index bb1d1c5..9ab47b2 100644
--- a/src/couch/priv/couch_js/60/http.cpp
+++ b/src/couch/priv/couch_js/60/http.cpp
@@ -41,10 +41,10 @@ http_ctor(JSContext* cx, JSObject* req)
 }
 
 
-bool
+void
 http_dtor(JSFreeOp* fop, JSObject* req)
 {
-    return false;
+    return;
 }
 
 
@@ -70,7 +70,7 @@ http_send(JSContext* cx, JSObject* req, JS::Value body)
 
 
 int
-http_status(JSContext* cx, JSObject* req, JS::Value body)
+http_status(JSContext* cx, JSObject* req)
 {
     return -1;
 }