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 40
40
#include <stdbool.h>
41
41
42
42
#include "compiler_macro.h"
43
- #include "verify.h"
44
43
#include "common_func.h"
44
+ #include "verify.h"
45
45
46
46
#endif /* COMMON_INC_H_ */
Original file line number Diff line number Diff line change 24
24
#include <stdbool.h>
25
25
#include <string.h>
26
26
27
- #include "FreeRTOS.h"
28
-
29
27
#ifndef LFS_NO_MALLOC
30
28
#include <stdlib.h>
31
29
#endif
@@ -56,21 +54,21 @@ extern "C"
56
54
// Logging functions
57
55
#ifndef LFS_NO_DEBUG
58
56
#define LFS_DEBUG (fmt , ...) \
59
- PRINTF ("lfs debug:%d: " fmt "\n", __LINE__, __VA_ARGS__)
57
+ printf ("lfs debug:%d: " fmt "\n", __LINE__, __VA_ARGS__)
60
58
#else
61
59
#define LFS_DEBUG (fmt , ...)
62
60
#endif
63
61
64
62
#ifndef LFS_NO_WARN
65
63
#define LFS_WARN (fmt , ...) \
66
- PRINTF ("lfs warn:%d: " fmt "\n", __LINE__, __VA_ARGS__)
64
+ printf ("lfs warn:%d: " fmt "\n", __LINE__, __VA_ARGS__)
67
65
#else
68
66
#define LFS_WARN (fmt , ...)
69
67
#endif
70
68
71
69
#ifndef LFS_NO_ERROR
72
70
#define LFS_ERROR (fmt , ...) \
73
- PRINTF ("lfs error:%d: " fmt "\n", __LINE__, __VA_ARGS__)
71
+ printf ("lfs error:%d: " fmt "\n", __LINE__, __VA_ARGS__)
74
72
#else
75
73
#define LFS_ERROR (fmt , ...)
76
74
#endif
You can’t perform that action at this time.
0 commit comments