summaryrefslogtreecommitdiff
path: root/apps/system/prun
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-09-06 09:23:23 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-09-06 09:23:23 -0600
commit9544c29043dbb090da9e526825bf1fd9110f656c (patch)
tree7ae9f04ab851916b192f7be9215b149185f93b2f /apps/system/prun
parentd9653e757df0028d5aa3757b27808d3f512cb456 (diff)
downloadnuttx-9544c29043dbb090da9e526825bf1fd9110f656c.tar.gz
nuttx-9544c29043dbb090da9e526825bf1fd9110f656c.tar.bz2
nuttx-9544c29043dbb090da9e526825bf1fd9110f656c.zip
Use more standard *argv[] instead easier **argv
Diffstat (limited to 'apps/system/prun')
-rw-r--r--apps/system/prun/pexec_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/system/prun/pexec_main.c b/apps/system/prun/pexec_main.c
index 74771f0c0..f981af6a1 100644
--- a/apps/system/prun/pexec_main.c
+++ b/apps/system/prun/pexec_main.c
@@ -82,7 +82,7 @@ static void show_usage(FAR const char *progname, int errcode)
****************************************************************************/
#ifdef CONFIG_BUILD_KERNEL
-int main(int argc, FAR char **argv)
+int main(int argc, FAR char *argv[])
#else
int pexec_main(int argc, FAR char **argv)
#endif