summaryrefslogtreecommitdiffstats
path: root/src/indent.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-10-01 20:17:17 +0100
committerBram Moolenaar <Bram@vim.org>2022-10-01 20:17:17 +0100
commit3292a229402c9892f5ab90645fbfe2b1db342f5b (patch)
tree96db3a52ceef4823435d4cec72b6132d94a01eda /src/indent.c
parenta4e0b9785e409e9e660171cea76dfcc5fdafad9b (diff)
patch 9.0.0635: build error and compiler warningsv9.0.0635
Problem: Build error and compiler warnings. Solution: Add missing change. Add type casts.
Diffstat (limited to 'src/indent.c')
-rw-r--r--src/indent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indent.c b/src/indent.c
index 51585ec9e8..79162bf78e 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1906,7 +1906,7 @@ get_expr_indent(void)
inde_copy = vim_strsave(curbuf->b_p_inde);
if (inde_copy != NULL)
{
- indent = (int)eval_to_number(inde_copy);
+ indent = (int)eval_to_number(inde_copy, TRUE);
vim_free(inde_copy);
}