From a68d59e180b8131197c6387a764a78403b06e069 Mon Sep 17 00:00:00 2001 From: pommicket Date: Sat, 24 Dec 2022 12:29:51 -0500 Subject: fix ted_get_lsp problem --- lsp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lsp.c') diff --git a/lsp.c b/lsp.c index 7aa4d56..3b91705 100644 --- a/lsp.c +++ b/lsp.c @@ -296,8 +296,8 @@ LSP *lsp_create(const char *root_dir, Language language, const char *analyzer_co if (!lsp) return NULL; #if DEBUG - printf("Starting up LSP `%s` for language %s in %s\n", - analyzer_command, language_to_str(language), root_dir); + printf("Starting up LSP %p `%s` for language %s in %s\n", + (void *)lsp, analyzer_command, language_to_str(language), root_dir); #endif ProcessSettings settings = { -- cgit v1.2.3