From ed1925e0d1fb9bbc5ce9923cfa5c232b1fef41b2 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Fri, 4 Mar 2016 12:22:47 +0100 Subject: [PATCH] Lint: fix line length >80 Introduced here: https://github.com/neovim/neovim/commit/4bfac00aa389487c4f11d34e7a3e96e4a1116800#diff-2bf87eef9f7b99dcea4b0c55beee2d63R78 --- src/nvim/os/stdpaths.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nvim/os/stdpaths.c b/src/nvim/os/stdpaths.c index 8a8f43cb8a..81ceb919c4 100644 --- a/src/nvim/os/stdpaths.c +++ b/src/nvim/os/stdpaths.c @@ -75,7 +75,8 @@ static char *get_xdg_home(const XDGVarType idx) char *dir = stdpaths_get_xdg_var(idx); if (dir) { #if defined(WIN32) - dir = concat_fnames_realloc(dir, (idx == kXDGDataHome ? "nvim-data" : "nvim"), + dir = concat_fnames_realloc(dir, + (idx == kXDGDataHome ? "nvim-data" : "nvim"), true); #else dir = concat_fnames_realloc(dir, "nvim", true);