Fix CE ls on non-directory filesystem paths
All checks were successful
Build documentation / build-and-deploy (push) Successful in 2m48s

This commit is contained in:
2026-03-01 00:35:14 +01:00
parent a3b98fcaa2
commit eb55a6de21
3 changed files with 9 additions and 1 deletions

View File

@@ -18,6 +18,12 @@ static const char* str_status[] = {
[ST_BAD_PATH] = "path parsing error",
[ST_EXEC_ERROR] = "exec error",
[ST_MOUNT_ERROR] = "mount error",
[ST_TRY_AGAIN] = "try again",
[ST_NOT_DIR] = "not a directory",
[ST_DIR_NO_ENTRIES] = "empty directory",
[ST_FORMAT_ERROR] = "filesystem formatting error",
[ST_NOT_DRV] = "not a drive device",
[ST_PARTITION_ERROR] = "partition error",
};
#endif // _LIBSYSTEM_STR_STATUS_H