Remove nonnull attribute, NULL arg is valid here.

This commit is contained in:
Campbell Barton 2015-07-21 09:40:48 +10:00
parent 30772b6f09
commit b5f282b211

@ -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)