summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lwext4/ext4_debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lwext4/ext4_debug.h b/lwext4/ext4_debug.h
index 868e7da..9eed22d 100644
--- a/lwext4/ext4_debug.h
+++ b/lwext4/ext4_debug.h
@@ -104,8 +104,8 @@ uint32_t ext4_dmask_get(void);
#define ext4_assert(_v) \
do { \
if (!(_v)) { \
- printf("Assertion failed:\nmodule: %s\nfunc: %s\nline: %d\n", \
- __FILE__, __FUNCTION__, __LINE__); \
+ printf("Assertion failed:\nmodule: %s\nline: %d\n", \
+ __FILE__, __LINE__); \
} \
} while (0)
#else