File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
libraries/Adafruit_LittleFS/src/littlefs Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 4040#include <stdbool.h>
4141
4242#include "compiler_macro.h"
43- #include "verify.h"
4443#include "common_func.h"
44+ #include "verify.h"
4545
4646#endif /* COMMON_INC_H_ */
Original file line number Diff line number Diff line change 2424#include <stdbool.h>
2525#include <string.h>
2626
27- #include "FreeRTOS.h"
28-
2927#ifndef LFS_NO_MALLOC
3028#include <stdlib.h>
3129#endif
@@ -56,21 +54,21 @@ extern "C"
5654// Logging functions
5755#ifndef LFS_NO_DEBUG
5856#define LFS_DEBUG (fmt , ...) \
59- PRINTF ("lfs debug:%d: " fmt "\n", __LINE__, __VA_ARGS__)
57+ printf ("lfs debug:%d: " fmt "\n", __LINE__, __VA_ARGS__)
6058#else
6159#define LFS_DEBUG (fmt , ...)
6260#endif
6361
6462#ifndef LFS_NO_WARN
6563#define LFS_WARN (fmt , ...) \
66- PRINTF ("lfs warn:%d: " fmt "\n", __LINE__, __VA_ARGS__)
64+ printf ("lfs warn:%d: " fmt "\n", __LINE__, __VA_ARGS__)
6765#else
6866#define LFS_WARN (fmt , ...)
6967#endif
7068
7169#ifndef LFS_NO_ERROR
7270#define LFS_ERROR (fmt , ...) \
73- PRINTF ("lfs error:%d: " fmt "\n", __LINE__, __VA_ARGS__)
71+ printf ("lfs error:%d: " fmt "\n", __LINE__, __VA_ARGS__)
7472#else
7573#define LFS_ERROR (fmt , ...)
7674#endif
You can’t perform that action at this time.
0 commit comments