summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgkostka <kostka.grzegorz@gmail.com>2015-07-16 21:47:51 +0000
committergkostka <kostka.grzegorz@gmail.com>2015-07-16 21:47:51 +0000
commit936b134756cd7f7f76c958dad1c8aaa072dc092c (patch)
tree2f39ea6eb5a638fd6d1b310abd57db51518ac170
parent650f1026e4d9195335d0644e63456cf9ea87a6e2 (diff)
Remove warnings comming from assert macro usage
-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