Skip to content

Commit

Permalink
Merge pull request #414 from skliper/fix368-deprecate-os_fs_err_name_t
Browse files Browse the repository at this point in the history
Fix #368, Deprecate os_fs_err_name_t
  • Loading branch information
astrogeco authored Apr 21, 2020
2 parents 27dc32f + 0f69b11 commit 195beb4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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

0 comments on commit 195beb4

Please sign in to comment.