mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-25 07:27:16 +00:00
Remove use of CONFIG_MAX_TASK_ARGS from examples/thttpd
This commit is contained in:
parent
eaddb9059f
commit
a32e3bdb7b
1 changed files with 2 additions and 3 deletions
|
|
@ -152,12 +152,11 @@ static const char *g_ttypenames[4] =
|
|||
|
||||
/* Then any additional arguments */
|
||||
|
||||
#if CONFIG_MAX_TASK_ARGS > 2
|
||||
for (i = 2; i <= CONFIG_MAX_TASK_ARGS && ttcb->argv[i]; i++)
|
||||
for (i = 2; ttcb->argv[i]; i++)
|
||||
{
|
||||
printf(", %p", ttcb->argv[i]);
|
||||
}
|
||||
#endif
|
||||
|
||||
printf(")\n");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue