diff options
author | ZyX <kp-pav@yandex.ru> | 2017-02-14 00:12:57 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-29 10:08:44 +0300 |
commit | 506b938947b7083fc8bef20eabc08ed033298add (patch) | |
tree | 5b63f03d0fdc3cc1cfa3832d23dc2cc9c25dd4cb /src/nvim/eval/typval.c | |
parent | 3025431c81daac873e69a71aee695ebfd00504f7 (diff) | |
download | rneovim-506b938947b7083fc8bef20eabc08ed033298add.tar.gz rneovim-506b938947b7083fc8bef20eabc08ed033298add.tar.bz2 rneovim-506b938947b7083fc8bef20eabc08ed033298add.zip |
*: Make some more things const and with length
Diffstat (limited to 'src/nvim/eval/typval.c')
-rw-r--r-- | src/nvim/eval/typval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval/typval.c b/src/nvim/eval/typval.c index 8c11f4bd8f..2f3415a59d 100644 --- a/src/nvim/eval/typval.c +++ b/src/nvim/eval/typval.c @@ -2041,7 +2041,7 @@ bool tv_islocked(const typval_T *const tv) /// /// @param[in] lock Lock status. /// @param[in] name Variable name, used in the error message. -/// @param[in] use_gettext True if variable name also is to be translated. +/// @param[in] name_len Variable name length. /// /// @return true if variable is locked, false otherwise. bool tv_check_lock(const VarLockStatus lock, const char *const name, |