Fixed building without debug after c1ae75b4e17c and 6281674ecf4f.

This commit is contained in:
Valentin Bartenev
2017-08-04 18:00:40 +03:00
parent e62840cd54
commit 617da0d023
2 changed files with 4 additions and 11 deletions

View File

@@ -780,15 +780,11 @@ static void
nxt_controller_conf_handler(nxt_task_t *task, nxt_port_recv_msg_t *msg,
void *data)
{
size_t size;
nxt_buf_t *b;
nxt_controller_request_t *req;
nxt_controller_response_t resp;
b = msg->buf;
size = b->mem.free - b->mem.pos;
nxt_debug(task, "controller conf ready: %*s ...", size, b->mem.pos);
nxt_debug(task, "controller conf ready: %*s",
nxt_buf_mem_used_size(&msg->buf->mem), msg->buf->mem.pos);
nxt_memzero(&resp, sizeof(nxt_controller_response_t));

View File

@@ -148,11 +148,8 @@ static nxt_conf_map_t nxt_common_app_conf[] = {
static void
nxt_port_master_data_handler(nxt_task_t *task, nxt_port_recv_msg_t *msg)
{
nxt_buf_t *b;
b = msg->buf;
nxt_debug(task, "master data: %*s", b->mem.free - b->mem.pos, b->mem.pos);
nxt_debug(task, "master data: %*s",
nxt_buf_mem_used_size(&msg->buf->mem), msg->buf->mem.pos);
}