Lint: fix line length >80

Introduced here:

4bfac00aa3 (diff-2bf87eef9f7b99dcea4b0c55beee2d63R78)
This commit is contained in:
Marco Hinz 2016-03-04 12:22:47 +01:00
parent c3b6cd300f
commit ed1925e0d1

View File

@ -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);