Skip to content

Commit

Permalink
use the global config file
Browse files Browse the repository at this point in the history
  • Loading branch information
renesas-billgesner committed Nov 12, 2020
1 parent be364e8 commit b477e0d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion lfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* SPDX-License-Identifier: BSD-3-Clause
*/
#include "lfs.h"
#include "lfs_util.h"
#include <lfs_util.h>

#define LFS_BLOCK_NULL ((lfs_block_t)-1)
#define LFS_BLOCK_INLINE ((lfs_block_t)-2)
Expand Down
3 changes: 0 additions & 3 deletions lfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ enum lfs_error {
LFS_ERR_NOMEM = -12, // No more memory available
LFS_ERR_NOATTR = -61, // No data/attr available
LFS_ERR_NAMETOOLONG = -36, // File name too long
#if LFS_THREAD_SAFE
LFS_ERR_LOCK = -23, // Failed to aquire lock
#endif
};

// File types
Expand Down

0 comments on commit b477e0d

Please sign in to comment.