patch 9.0.0635: build error and compiler warnings

Problem:    Build error and compiler warnings.
Solution:   Add missing change.  Add type casts.
diff --git a/src/indent.c b/src/indent.c
index 51585ec..79162bf 100644
--- a/src/indent.c
+++ b/src/indent.c
@@ -1906,7 +1906,7 @@
     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);
     }