acassis commented on code in PR #19122: URL: https://github.com/apache/nuttx/pull/19122#discussion_r3397364389
########## binfmt/binfmt_exec.c: ########## @@ -83,6 +84,11 @@ static int exec_internal(FAR const char *filename, FAR struct binary_s *bin; int pid; int ret; +#ifdef CONFIG_SCHED_USER_IDENTITY + FAR struct tcb_s *rtcb; + struct stat st; + mode_t xbits; +#endif Review Comment: Variables more complex like structs are declares before primitive types like int, char, etc -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
