Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #368, Deprecate os_fs_err_name_t #414

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/os/inc/osapi-os-filesys.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
#define OS_FS_UNIMPLEMENTED OS_ERR_NOT_IMPLEMENTED /**< @brief Not implemented */
/**@}*/


#ifndef OSAL_OMIT_DEPRECATED
/* This typedef is for OS_FS_GetErrorName(), to ensure
* everyone is making an array of the same length
*
Expand All @@ -103,7 +103,7 @@
* os_err_name_t.
*/
typedef os_err_name_t os_fs_err_name_t;

#endif

/**
* @brief Internal structure of the OS volume table for
Expand Down
2 changes: 1 addition & 1 deletion src/tests/file-api-test/file-api-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void TestStat(void);
void TestOpenFileAPI(void);
void TestUnmountRemount(void);

os_fs_err_name_t errname;
os_err_name_t errname;

/* *************************************** MAIN ************************************** */

Expand Down