From b5f282b2119c3ec16f1a99c43d8a144c576fb247 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 21 Jul 2015 09:40:48 +1000 Subject: [PATCH] Remove nonnull attribute, NULL arg is valid here. --- source/blender/blenlib/BLI_fileops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)