diff options
author | Miles Bader <miles@gnu.org> | 1995-04-26 14:40:24 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-04-26 14:40:24 +0000 |
commit | 0cc32481c6ca2416d5bca37d885bb3db41389cf8 (patch) | |
tree | a074a3df0e7f120d63e88a6d91ba9c3cc53fddbb /ext2fs | |
parent | e18de3e482efaf76b5b480467900fe350bdfcac2 (diff) |
Formerly ext2_fs.h.~12~
Diffstat (limited to 'ext2fs')
-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 |