mirror of
https://github.com/apache/nuttx.git
synced 2026-05-31 14:27:37 +08:00
Revert "FS: Fix backward conditional logic that prevent unlink() from building in some configurations."
Oops. It was not backward. Enable == !Disable. Negative logic is confusing.
This reverts commit 1fcf353e89.
This commit is contained in:
+1
-1
@@ -59,7 +59,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#undef FS_HAVE_PSEUDOFS_OPERATIONS
|
#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
|
# define FS_HAVE_PSEUDOFS_OPERATIONS 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user