summaryrefslogtreecommitdiff
path: root/apps/examples/thttpd
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/examples/thttpd
parentd9653e757df0028d5aa3757b27808d3f512cb456 (diff)
downloadnuttx-9544c29043dbb090da9e526825bf1fd9110f656c.tar.gz
nuttx-9544c29043dbb090da9e526825bf1fd9110f656c.tar.bz2
nuttx-9544c29043dbb090da9e526825bf1fd9110f656c.zip
Use more standard *argv[] instead easier **argv
Diffstat (limited to 'apps/examples/thttpd')
-rw-r--r--apps/examples/thttpd/thttpd_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/examples/thttpd/thttpd_main.c b/apps/examples/thttpd/thttpd_main.c
index 868f43438..4cad55b53 100644
--- a/apps/examples/thttpd/thttpd_main.c
+++ b/apps/examples/thttpd/thttpd_main.c
@@ -172,7 +172,7 @@ int g_thttpdnsymbols;
****************************************************************************/
#ifdef CONFIG_BUILD_KERNEL
-int main(int argc, FAR char **argv)
+int main(int argc, FAR char *argv[])
#else
int thttp_main(int argc, char *argv[])
#endif