diff options
author | Bertrand Jacquin (Beber) <beber@setibzh.com> | 2006-01-18 20:30:01 +0100 |
---|---|---|
committer | Bertrand Jacquin (Beber) <beber@setibzh.com> | 2006-01-18 20:30:01 +0100 |
commit | 8275a4ccf03e6fd0056cf5bd33f3e89e6b169023 (patch) | |
tree | 5ea6a0d80eb4c357043db34259578e342cac41e8 /src | |
parent | Add others gitignore (diff) | |
download | espik-8275a4ccf03e6fd0056cf5bd33f3e89e6b169023.tar.xz |
indent
Diffstat (limited to 'src')
-rw-r--r-- | src/espik_debug.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/espik_debug.h b/src/espik_debug.h index d41eec4..19f0746 100644 --- a/src/espik_debug.h +++ b/src/espik_debug.h @@ -7,12 +7,12 @@ #define DEBUG_ENTLEV_FILENO stderr #if defined (_ESPIK_DEBUG_) && defined (__GNUC__) -#define espik_debug_print(fmt, ...) \ -{ \ - fprintf (DEBUG_PRINT_FILENO, "%s +%i @%s: '", __FILE__, __LINE__, \ - __func__); \ - fprintf (DEBUG_PRINT_FILENO, fmt, ##__VA_ARGS__); \ - fprintf (DEBUG_PRINT_FILENO, "'\n"); \ +#define espik_debug_print(fmt, ...) \ +{ \ + fprintf (DEBUG_PRINT_FILENO, "%s +%i @%s: '", __FILE__, __LINE__, \ + __func__); \ + fprintf (DEBUG_PRINT_FILENO, fmt, ##__VA_ARGS__); \ + fprintf (DEBUG_PRINT_FILENO, "'\n"); \ } #else #define espik_debug_print(fmt, ...) \ |