mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-01 20:29:00 +00:00
examples/elf: Fix invalid preprocessor directive syntax
Fix invalid preprocessor directive in elf_main.c by changing `# Warning "No file system selected"` to `# warning "No file system selected"`. The incorrect uppercase "Warning" directive would cause compilation errors, while the proper lowercase "warning" directive generates the intended compiler warning when no file system is selected. Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
This commit is contained in:
parent
9e83bc2270
commit
847f862fd4
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ int main(int argc, FAR char *argv[])
|
|||
}
|
||||
#endif
|
||||
#else
|
||||
# Warning "No file system selected"
|
||||
# warning "No file system selected"
|
||||
#endif
|
||||
|
||||
mm_update(&g_mmstep, "after mount");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue