summaryrefslogtreecommitdiff
path: root/source4/lib/util/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'source4/lib/util/debug.h')
-rw-r--r--source4/lib/util/debug.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/source4/lib/util/debug.h b/source4/lib/util/debug.h
index 10d7d0697c..80155cdccf 100644
--- a/source4/lib/util/debug.h
+++ b/source4/lib/util/debug.h
@@ -23,14 +23,6 @@
* @brief Debugging macros
*/
-/* If we have these macros, we can add additional info to the header. */
-
-#ifdef HAVE_FUNCTION_MACRO
-#define FUNCTION_MACRO (__FUNCTION__)
-#else
-#define FUNCTION_MACRO ("")
-#endif
-
/* the debug operations structure - contains function pointers to
various debug implementations of each operation */
struct debug_ops {
@@ -54,7 +46,7 @@ extern int DEBUGLEVEL;
#define _DEBUG(level, body, header) do { \
if (DEBUGLVL(level)) { \
if (header) { \
- do_debug_header(level, __location__, FUNCTION_MACRO); \
+ do_debug_header(level, __location__, __FUNCTION__); \
} \
do_debug body; \
} \