summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgkostka <kostka.grzegorz@gmail.com>2015-07-23 19:26:57 +0200
committergkostka <kostka.grzegorz@gmail.com>2015-07-23 19:26:57 +0200
commit3d1db93236f9cac2ea0103e696633359785ef514 (patch)
treec575af08b4e7fab3237cd0da7d3755e70dd2bdbf
parentd4b418a3216a37a9914ccb3e0d1b1283355baf7a (diff)
parent936b134756cd7f7f76c958dad1c8aaa072dc092c (diff)
Merge branch 'master' of git://git.code.sf.net/p/lwext4/gitlwext4-0.8.0
-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