diff options
author | Marco Hinz <mh.codebro@gmail.com> | 2016-03-04 12:22:47 +0100 |
---|---|---|
committer | Marco Hinz <mh.codebro@gmail.com> | 2016-03-04 12:23:21 +0100 |
commit | ed1925e0d1fb9bbc5ce9923cfa5c232b1fef41b2 (patch) | |
tree | 11374a69e174d987229d6cc6b4c6b81b470f8773 /src/nvim/os/stdpaths.c | |
parent | c3b6cd300f5a55dd3d162fd53ad18b4184920f6d (diff) | |
download | rneovim-ed1925e0d1fb9bbc5ce9923cfa5c232b1fef41b2.tar.gz rneovim-ed1925e0d1fb9bbc5ce9923cfa5c232b1fef41b2.tar.bz2 rneovim-ed1925e0d1fb9bbc5ce9923cfa5c232b1fef41b2.zip |
Lint: fix line length >80
Introduced here:
https://github.com/neovim/neovim/commit/4bfac00aa389487c4f11d34e7a3e96e4a1116800#diff-2bf87eef9f7b99dcea4b0c55beee2d63R78
Diffstat (limited to 'src/nvim/os/stdpaths.c')
-rw-r--r-- | src/nvim/os/stdpaths.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |