aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-11-05 16:29:27 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-11-05 16:29:27 -0500
commitdd087ea9c94d33c2a28f5859bebdcaed0872d096 (patch)
treef6ca8b592d79f57cf1d81e7fd869a210d7565db5 /src
parente19f1c54914527da7a20d49905ed1c1b95eb9ceb (diff)
parent96dc38b3c84378e5869e030e0a1854e10f2c0a28 (diff)
downloadrneovim-dd087ea9c94d33c2a28f5859bebdcaed0872d096.tar.gz
rneovim-dd087ea9c94d33c2a28f5859bebdcaed0872d096.tar.bz2
rneovim-dd087ea9c94d33c2a28f5859bebdcaed0872d096.zip
Merge pull request #3607 from ZyX-I/fix-3605
undo: Remove incorrect NONNULL_ALL attribute
Diffstat (limited to 'src')
-rw-r--r--src/nvim/undo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c
index d8158bf7cd..b0c49cbf8e 100644
--- a/src/nvim/undo.c
+++ b/src/nvim/undo.c
@@ -650,7 +650,7 @@ void u_compute_hash(char_u *hash)
///
/// @return [allocated] File name to read from/write to or NULL.
char *u_get_undo_file_name(const char *const buf_ffname, const bool reading)
- FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT
+ FUNC_ATTR_WARN_UNUSED_RESULT
{
char *dirp;
char dir_name[MAXPATHL + 1];