1
0
forked from aniani/vim

patch 8.2.2922: computing array length is done in various ways

Problem:    Computing array length is done in various ways.
Solution:   Use ARRAY_LENGTH everywhere. (Ken Takata, closes #8305)
This commit is contained in:
K.Takata
2021-06-02 13:28:16 +02:00
committed by Bram Moolenaar
parent b54abeeafb
commit eeec254878
43 changed files with 80 additions and 90 deletions

View File

@@ -276,8 +276,7 @@ f_strftime(typval_T *argvars, typval_T *rettv)
wp = enc_to_utf16(p, NULL);
if (wp != NULL)
(void)wcsftime(result_buf, sizeof(result_buf) / sizeof(WCHAR),
wp, curtime);
(void)wcsftime(result_buf, ARRAY_LENGTH(result_buf), wp, curtime);
else
result_buf[0] = NUL;
rettv->vval.v_string = utf16_to_enc(result_buf, NULL);