Skip to content
Snippets Groups Projects
Commit 3b820bbc authored by Stefan Kolb's avatar Stefan Kolb Committed by Gregory Nutt
Browse files

NSH: Correct an error in conditional compilation

parent c13b9e6a
No related branches found
No related tags found
No related merge requests found
......@@ -639,7 +639,7 @@
#endif
#define NSH_HAVE_CPULOAD 1
#if !defined(CONFIG_FS_PROCFS) || !defined(CONFIG_FS_PROCFS_EXCLUDE_CPULOAD) || \
#if !defined(CONFIG_FS_PROCFS) || defined(CONFIG_FS_PROCFS_EXCLUDE_CPULOAD) || \
!defined(CONFIG_SCHED_CPULOAD) || defined(CONFIG_NSH_DISABLE_PS)
# undef NSH_HAVE_CPULOAD
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment