diff options
Diffstat (limited to 'src/lsp/lsp_analysis.c')
| -rw-r--r-- | src/lsp/lsp_analysis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lsp/lsp_analysis.c b/src/lsp/lsp_analysis.c index 2a07990..088bede 100644 --- a/src/lsp/lsp_analysis.c +++ b/src/lsp/lsp_analysis.c @@ -26,7 +26,7 @@ static void send_json_response(cJSON *root) char *str = cJSON_PrintUnformatted(root); if (str) { - fprintf(stdout, "Content-Length: %ld\r\n\r\n%s", strlen(str), str); + fprintf(stdout, "Content-Length: %zu\r\n\r\n%s", strlen(str), str); fflush(stdout); free(str); } |
