diff options
author | pommicket <pommicket@gmail.com> | 2022-12-24 12:29:51 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-24 12:29:51 -0500 |
commit | a68d59e180b8131197c6387a764a78403b06e069 (patch) | |
tree | 53d32414fda2a4631a8476e766dcda8c0833c208 /lsp.c | |
parent | e1b3296d7ecae1bf1620f53714ec3ba5b31709d4 (diff) |
fix ted_get_lsp problem
Diffstat (limited to 'lsp.c')
-rw-r--r-- | lsp.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 = { |