summaryrefslogtreecommitdiffhomepage
path: root/src/nodejs/unit-http/unit.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/nodejs/unit-http/unit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nodejs/unit-http/unit.cpp b/src/nodejs/unit-http/unit.cpp
index b166707e..0e049865 100644
--- a/src/nodejs/unit-http/unit.cpp
+++ b/src/nodejs/unit-http/unit.cpp
@@ -1000,19 +1000,19 @@ Unit::websocket_set_sock(napi_env env, napi_callback_info info)
void
Unit::conn_destroy(napi_env env, void *r, void *finalize_hint)
{
- nxt_unit_req_debug((nxt_unit_request_info_t *) r, "conn_destroy: %p", r);
+ nxt_unit_req_debug(NULL, "conn_destroy: %p", r);
}
void
Unit::sock_destroy(napi_env env, void *r, void *finalize_hint)
{
- nxt_unit_req_debug((nxt_unit_request_info_t *) r, "sock_destroy: %p", r);
+ nxt_unit_req_debug(NULL, "sock_destroy: %p", r);
}
void
Unit::resp_destroy(napi_env env, void *r, void *finalize_hint)
{
- nxt_unit_req_debug((nxt_unit_request_info_t *) r, "resp_destroy: %p", r);
+ nxt_unit_req_debug(NULL, "resp_destroy: %p", r);
}