This commit is contained in:
Ken Van Hoeylandt 2026-02-09 20:29:30 +01:00
parent d3c6e52ce3
commit 801eacee16
2 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,7 @@ struct RootConfig {
* Indicates whether the device's model matches the specified model.
* @param[in] device the device to check (non-null)
* @param[in] model the model to check against
* @return true if the device's model matches the specified model'
* @return true if the device's model matches the specified model
*/
bool root_is_model(const struct Device* device, const char* model);

View File

@ -29,6 +29,8 @@ const char* error_to_string(error_t error) {
return "not supported";
case ERROR_NOT_ALLOWED:
return "not allowed";
case ERROR_BUFFER_OVERFLOW:
return "buffer overlow";
default:
return "unknown";
}