diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2021-10-14 23:48:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-14 23:48:42 +0200 |
commit | 5fd4557573c73a6b41b702b1ee39151b5bd7e5fd (patch) | |
tree | a61420011ff628034dbe33cdcc160d7eed6a94f7 /src/nvim/hardcopy.c | |
parent | 88e16a7f30b23c03c2207086f613190e685a67c3 (diff) | |
parent | 24a1880866b1b7f6cb74b7ac4fe9fbecd678bbe1 (diff) | |
download | rneovim-5fd4557573c73a6b41b702b1ee39151b5bd7e5fd.tar.gz rneovim-5fd4557573c73a6b41b702b1ee39151b5bd7e5fd.tar.bz2 rneovim-5fd4557573c73a6b41b702b1ee39151b5bd7e5fd.zip |
Merge pull request #16014 from dundargoc/refactor/reduce-char-casts
refactor: reduce number of unique char casts
Diffstat (limited to 'src/nvim/hardcopy.c')
-rw-r--r-- | src/nvim/hardcopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/hardcopy.c b/src/nvim/hardcopy.c index 9d9ffa550a..99e0bff81c 100644 --- a/src/nvim/hardcopy.c +++ b/src/nvim/hardcopy.c @@ -551,7 +551,7 @@ static void prt_header(prt_settings_T *const psettings, const int pagenum, const curwin->w_botline = lnum + 63; printer_page_num = pagenum; - use_sandbox = was_set_insecurely(curwin, (char_u *)"printheader", 0); + use_sandbox = was_set_insecurely(curwin, "printheader", 0); build_stl_str_hl(curwin, tbuf, (size_t)width + IOSIZE, p_header, use_sandbox, ' ', width, NULL, NULL); |