aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/nvim/os/server.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/os/server.c b/src/nvim/os/server.c
index b90e7e318b..375f3b5fa9 100644
--- a/src/nvim/os/server.c
+++ b/src/nvim/os/server.c
@@ -93,9 +93,9 @@ void server_start(char *endpoint)
// Trim to `ADDRESS_MAX_SIZE`
if (xstrlcpy(addr, endpoint, sizeof(addr)) >= sizeof(addr)) {
- // TODO(aktau): since this is not what the user wanted, perhaps we
- // should return an error here
- EMSG2("Address was too long, truncated to %s", addr);
+ // TODO(aktau): since this is not what the user wanted, perhaps we
+ // should return an error here
+ EMSG2("Address was too long, truncated to %s", addr);
}
// Check if the server already exists