summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-12 18:33:07 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-12 18:33:07 -0600
commit78f3075b04a53bb6f7a0e0f174e8a25f10ad4e95 (patch)
tree0e1202b3a117b594f46eb99127c22a7074c41521
parent12c4a9fe2ca2a1483c87f4c0bf9cb362580e9421 (diff)
downloadnuttx-78f3075b04a53bb6f7a0e0f174e8a25f10ad4e95.tar.gz
nuttx-78f3075b04a53bb6f7a0e0f174e8a25f10ad4e95.tar.bz2
nuttx-78f3075b04a53bb6f7a0e0f174e8a25f10ad4e95.zip
Oops.. part of the last change will still in the editor
-rw-r--r--nuttx/include/nuttx/binfmt/binfmt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/include/nuttx/binfmt/binfmt.h b/nuttx/include/nuttx/binfmt/binfmt.h
index 56ee57445..8ee4b161b 100644
--- a/nuttx/include/nuttx/binfmt/binfmt.h
+++ b/nuttx/include/nuttx/binfmt/binfmt.h
@@ -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