summaryrefslogtreecommitdiffstats
path: root/aclk/aclk_query.c
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-11-01 16:24:35 +0900
committerGitHub <noreply@github.com>2021-11-01 08:24:35 +0100
commit36d98e2c3dca572dd929dd4ee100b96c7443b317 (patch)
tree0d0e97a23dd6f366e37113845c59bfe0d1a6ce8f /aclk/aclk_query.c
parente529cd13f95fd6a94cbe4e2cb33faaae6fb9865a (diff)
Fix typo in aclk_query.c (#11737)
lenght -> length
Diffstat (limited to 'aclk/aclk_query.c')
-rw-r--r--aclk/aclk_query.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/aclk/aclk_query.c b/aclk/aclk_query.c
index 6708e6f471..2b66b51325 100644
--- a/aclk/aclk_query.c
+++ b/aclk/aclk_query.c
@@ -179,7 +179,7 @@ static int http_api_v2(struct aclk_query_thread *query_thr, aclk_query_t query)
z_buffer->len += bytes_to_cpy;
} while(z_ret != Z_STREAM_END);
// so that web_client_build_http_header
- // puts correct content lenght into header
+ // puts correct content length into header
buffer_free(w->response.data);
w->response.data = z_buffer;
z_buffer = NULL;