diff options
Diffstat (limited to 'lib/request.c')
-rw-r--r-- | lib/request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/request.c b/lib/request.c index da38015..3d4b096 100644 --- a/lib/request.c +++ b/lib/request.c @@ -12,7 +12,7 @@ rs_req_create (struct rs_connection *conn, struct rs_request **req_out) { struct rs_request *req = rs_malloc (conn->ctx, sizeof(*req)); if (!req) - return rs_conn_err_push_fl (conn, RSE_NOMEM, __FILE__, __LINE__, NULL); + return rs_err_conn_push_fl (conn, RSE_NOMEM, __FILE__, __LINE__, NULL); memset (req, 0, sizeof(*req)); req->conn = conn; *req_out = req; |