diff options
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 0a15c0b376..eafdd2446c 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -11649,9 +11649,7 @@ static void f_readfile(typval_T *argvars, typval_T *rettv) * Convert a List to proftime_T. * Return FAIL when there is something wrong. */ -static int list2proftime(arg, tm) -typval_T *arg; -proftime_T *tm; +static int list2proftime(typval_T *arg, proftime_T *tm) { long n1, n2; int error = FALSE; |