Oops.. part of the last change will still in the editor

This commit is contained in:
Gregory Nutt 2014-11-12 18:33:07 -06:00
parent 7c119ba787
commit bb65701ccd
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ struct binary_s
FAR const char *filename; /* Full path to the binary to be loaded (See NOTE 1 above) */
#if defined(CONFIG_ARCH_ADDRENV) && defined(CONFIG_BUILD_KERNEL)
FAR char *argbuffer; /* Allocated argument list */
FAR char *argv[CONFIG_MAX_TASK_ARGS+1]; /* Copy of argument list */
FAR char **argv; /* Copy of argument list */
#else
FAR char * const *argv; /* Argument list */
#endif