mirror of https://github.com/ARMmbed/mbed-os.git
Adding return MBED_ERROR_UNSUPPORTED in _storage_config_default if no component is defined.
parent
40263b3c5c
commit
98f6364e87
|
@ -1057,6 +1057,8 @@ int _storage_config_default()
|
|||
return _storage_config_FILESYSTEM();
|
||||
#elif COMPONENT_FLASHIAP
|
||||
return _storage_config_TDB_INTERNAL();
|
||||
#else
|
||||
return MBED_ERROR_UNSUPPORTED;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue