diff options
Diffstat (limited to 'ext2fs/ext2_fs.h')
-rw-r--r-- | ext2fs/ext2_fs.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ext2fs/ext2_fs.h b/ext2fs/ext2_fs.h index 3527442f..01cf1579 100644 --- a/ext2fs/ext2_fs.h +++ b/ext2fs/ext2_fs.h @@ -62,11 +62,9 @@ typedef signed char s8; * Debug code */ #ifdef EXT2FS_DEBUG -# define ext2_debug(f, a...) { \ - printf ("EXT2-fs DEBUG (%s, %d): %s:", \ - __FILE__, __LINE__, __FUNCTION__); \ - printf (f, ## a); \ - } +# define ext2_debug(f, a...) \ + { printf ("ext2fs DEBUG %s:%d: %s: ", __FILE__, __LINE__, __FUNCTION__); + printf (f, ## a); } #else # define ext2_debug(f, a...) /**/ #endif |