diff options
author | André Twupack <atwupack@mailbox.org> | 2014-06-28 16:51:59 +0200 |
---|---|---|
committer | Nicolas Hillegeer <nicolas@hillegeer.com> | 2014-07-13 14:20:18 +0200 |
commit | 7c473dc0a25fa55a09f0288b09b47fab5caee589 (patch) | |
tree | 1ca4bc2af592ebc2ef3011585d2fbaa3e8875698 | |
parent | 5d53c51fae483b9a4cbb3636932f7d753d67c384 (diff) | |
download | rneovim-7c473dc0a25fa55a09f0288b09b47fab5caee589.tar.gz rneovim-7c473dc0a25fa55a09f0288b09b47fab5caee589.tar.bz2 rneovim-7c473dc0a25fa55a09f0288b09b47fab5caee589.zip |
os/server: Fix indentation
-rw-r--r-- | src/nvim/os/server.c | 6 |
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 |