linter: make changes pass the linter

This commit is contained in:
raichoo
2017-03-11 14:41:34 +01:00
parent 86b1e7f583
commit 2ad25c0466
4 changed files with 17 additions and 14 deletions

View File

@@ -3862,14 +3862,14 @@ fex_format (
if (fex == NULL) {
return 0;
}
/*
* Evaluate the function.
*/
if (use_sandbox)
++sandbox;
// Evaluate the function.
if (use_sandbox) {
sandbox++;
}
r = (int)eval_to_number(fex);
if (use_sandbox)
--sandbox;
if (use_sandbox) {
sandbox--;
}
set_vim_var_string(VV_CHAR, NULL, -1);
xfree(fex);