aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2017-03-29 20:45:22 -0400
committerJames McCoy <jamessan@jamessan.com>2017-03-29 21:16:58 -0400
commit91dfebf0506c4389af77071323798fdd7360c589 (patch)
treec4362f87fec412ab32418f5312d17597fd48d4cd
parent1c6ae58fd1301bfe2b27ed168b5a117e92c9c4cd (diff)
downloadrneovim-91dfebf0506c4389af77071323798fdd7360c589.tar.gz
rneovim-91dfebf0506c4389af77071323798fdd7360c589.tar.bz2
rneovim-91dfebf0506c4389af77071323798fdd7360c589.zip
ci: Update Coverity model for typval refactoring
[ci skip]
-rw-r--r--src/coverity-model.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coverity-model.c b/src/coverity-model.c
index a01ea6d316..3c38e4ae4d 100644
--- a/src/coverity-model.c
+++ b/src/coverity-model.c
@@ -64,7 +64,7 @@ void *je_realloc(void *ptr, size_t size)
// of the memory allocated for item.
typedef struct {} dictitem_T;
typedef struct {} dict_T;
-int dict_add(dict_T *d, dictitem_T *item)
+int tv_dict_add(dict_T *const d, dictitem_T *const item)
{
__coverity_escape__(item);
}