diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-15 22:12:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-15 22:12:31 +0200 |
commit | 5c805f4566384cbc76c88bfbffb8849498533529 (patch) | |
tree | 51ddf71326ebb6417edca00147216b9802b65dcb /src/nvim/option.c | |
parent | c70ab1a2e2d78832e0246bd64c53c8b92912f0ef (diff) | |
parent | d76a13bb65574f4811313ada6454f7d34cde2a2c (diff) | |
download | rneovim-5c805f4566384cbc76c88bfbffb8849498533529.tar.gz rneovim-5c805f4566384cbc76c88bfbffb8849498533529.tar.bz2 rneovim-5c805f4566384cbc76c88bfbffb8849498533529.zip |
Merge #6528 from ZyX-I/revise-malloc-attr
Revise places where FUNC_ATTR_MALLOC is present
Closes #6521
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 458d80716c..0070a0056d 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -6974,7 +6974,7 @@ bool signcolumn_on(win_T *wp) /// Get window or buffer local options dict_T *get_winbuf_options(const int bufopt) - FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_MALLOC + FUNC_ATTR_WARN_UNUSED_RESULT { dict_T *const d = tv_dict_alloc(); |