From e352bdca4fafdd15964f57241f9267481422453a Mon Sep 17 00:00:00 2001 From: Xiang Xiao Date: Thu, 13 May 2021 17:24:47 +0800 Subject: [PATCH] examples/module: Fix error: unused variable 'desc' Signed-off-by: Xiang Xiao --- examples/module/module_main.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/module/module_main.c b/examples/module/module_main.c index fcf07cf3e..5102bb8c4 100644 --- a/examples/module/module_main.c +++ b/examples/module/module_main.c @@ -151,6 +151,10 @@ int main(int argc, FAR char *argv[]) #ifdef CONFIG_BUILD_FLAT struct boardioc_symtab_s symdesc; #endif +#if defined(CONFIG_EXAMPLES_MODULE_BUILTINFS) && \ + defined(CONFIG_EXAMPLES_MODULE_ROMFS) + struct boardioc_romdisk_s desc; +#endif #if defined(CONFIG_EXAMPLES_MODULE_FSMOUNT) && \ defined(CONFIG_EXAMPLES_MODULE_FSREMOVEABLE) struct stat buf; @@ -160,7 +164,6 @@ int main(int argc, FAR char *argv[]) ssize_t nbytes; int ret; int fd; - struct boardioc_romdisk_s desc; #ifdef CONFIG_BUILD_FLAT /* Set the OS symbol table indirectly through the boardctl() */