From 24a1880866b1b7f6cb74b7ac4fe9fbecd678bbe1 Mon Sep 17 00:00:00 2001 From: Dundar Göc Date: Wed, 13 Oct 2021 13:25:27 +0200 Subject: refactor: reduce number of unique char casts --- src/nvim/indent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/indent.c') diff --git a/src/nvim/indent.c b/src/nvim/indent.c index a3ee3983e5..f49aff6643 100644 --- a/src/nvim/indent.c +++ b/src/nvim/indent.c @@ -533,7 +533,7 @@ int get_expr_indent(void) colnr_T save_curswant; int save_set_curswant; int save_State; - int use_sandbox = was_set_insecurely(curwin, (char_u *)"indentexpr", OPT_LOCAL); + int use_sandbox = was_set_insecurely(curwin, "indentexpr", OPT_LOCAL); // Save and restore cursor position and curswant, in case it was changed // * via :normal commands. -- cgit