FS: Fix backward conditional logic that prevent unlink() from building in some configurations.

This commit is contained in:
Gregory Nutt 2017-03-04 07:48:32 -06:00
parent 93814ccd41
commit 1fcf353e89

View File

@ -59,7 +59,7 @@
#endif
#undef FS_HAVE_PSEUDOFS_OPERATIONS
#if !defined(CONFIG_DISABLE_PSEUDOFS_OPERATIONS) && CONFIG_NFILE_STREAMS > 0
#if defined(CONFIG_DISABLE_PSEUDOFS_OPERATIONS) && CONFIG_NFILE_STREAMS > 0
# define FS_HAVE_PSEUDOFS_OPERATIONS 1
#endif