Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-07-21 02:40:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-07-21 02:41:48 +0300
commitb5f282b2119c3ec16f1a99c43d8a144c576fb247 (patch)
tree5112a7d00c25db8e73f56608e2b2103f482dd096 /source/blender/blenlib
parent30772b6f094ce3e4fa6931739b403ba0a352a80f (diff)
Remove nonnull attribute, NULL arg is valid here.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_fileops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_fileops.h b/source/blender/blenlib/BLI_fileops.h
index fa5a4acc66a..93842731ab7 100644
--- a/source/blender/blenlib/BLI_fileops.h
+++ b/source/blender/blenlib/BLI_fileops.h
@@ -120,7 +120,7 @@ bool BLI_file_older(const char *file1, const char *file2) ATTR_WARN_UNUSED_RES
/* read ascii file as lines, empty list if reading fails */
struct LinkNode *BLI_file_read_as_lines(const char *file) ATTR_WARN_UNUSED_RESULT ATTR_NONNULL();
-void BLI_file_free_lines(struct LinkNode *lines) ATTR_NONNULL();
+void BLI_file_free_lines(struct LinkNode *lines);
/* this weirdo pops up in two places ... */
#if !defined(WIN32)