configs/sim/spiffs/defconfig: Remove CONFIG_EXPERIMENTAL.
This commit is contained in:
parent
6a12213fbb
commit
5fad655982
|
@ -13,7 +13,7 @@ CONFIG_DISABLE_PTHREAD=y
|
|||
CONFIG_DISABLE_SIGNALS=y
|
||||
CONFIG_EXAMPLES_FSTEST=y
|
||||
CONFIG_EXAMPLES_FSTEST_MOUNTPT="/mnt/spiffs"
|
||||
CONFIG_EXPERIMENTAL=y
|
||||
CONFIG_EXAMPLES_FSTEST_NLOOPS=10
|
||||
CONFIG_FS_SPIFFS=y
|
||||
CONFIG_IDLETHREAD_STACKSIZE=4096
|
||||
CONFIG_LIB_RAND_ORDER=3
|
||||
|
|
|
@ -407,7 +407,7 @@ static int spiffs_open(FAR struct file *filep, FAR const char *relpath,
|
|||
{
|
||||
/* It does not exist and we were not asked to create it */
|
||||
|
||||
fwarn("WARNING: File does not exist a O_CREAT not set\n");
|
||||
fwarn("WARNING: File does not exist and O_CREAT not set\n");
|
||||
goto errout_with_fileobject;
|
||||
}
|
||||
else if (ret >= 0 && (oflags & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL))
|
||||
|
|
Loading…
Reference in New Issue