Fix errors from DEFAULT_TASK_SIZE change

There were several places where default sector and buffer sizes of 2048 were changed to DEFAULT_TASK_STACKSIZE.  This is not correct.  This was noted by Xiao Xiang.
This commit is contained in:
Gregory Nutt 2020-04-25 11:04:31 -06:00 committed by Abdelatif Guettouche
parent e589c45ab1
commit de60ff9408
2 changed files with 2 additions and 2 deletions

View file

@ -35,7 +35,7 @@ if !EXAMPLES_MOUNT_BLOCKDEVICE
config EXAMPLES_MOUNT_NSECTORS
int "RAM disk number of sectors"
default DEFAULT_TASK_STACKSIZE
default 2048
---help---
The number of "sectors" in the RAM disk used when
EXAMPLES_MOUNT_BLOCKDEVICE is not selected.

View file

@ -44,6 +44,6 @@ config LIBCURL4NX_MINRXBUFLEN
config LIBCURL4NX_MAXRXBUFLEN
int "Maximum RX buffer size for CURL4NXOPT_BUFFERSIZE"
default DEFAULT_TASK_STACKSIZE
default 2048
endif