From b732f3009a17f92c421bdd5fe9a65298dc8880b0 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 30 May 2008 14:35:31 +0000 Subject: - fix the macros rather than the callees as rightfully noted by bernds (duh!) --- ldso/include/ldso.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ldso/include/ldso.h') diff --git a/ldso/include/ldso.h b/ldso/include/ldso.h index a9d3609d0..35a72fc5e 100644 --- a/ldso/include/ldso.h +++ b/ldso/include/ldso.h @@ -67,8 +67,8 @@ extern int _dl_debug_file; # define _dl_if_debug_dprint(fmt, args...) \ do { if (_dl_debug) __dl_debug_dprint(fmt, ## args); } while (0) #else -# define __dl_debug_dprint(fmt, args...) -# define _dl_if_debug_dprint(fmt, args...) +# define __dl_debug_dprint(fmt, args...) do {} while (0) +# define _dl_if_debug_dprint(fmt, args...) do {} while (0) # define _dl_debug_file 2 #endif /* __SUPPORT_LD_DEBUG__ */ @@ -92,7 +92,7 @@ extern int _dl_debug_file; #ifdef __SUPPORT_LD_DEBUG_EARLY__ # define _dl_debug_early(fmt, args...) __dl_debug_dprint(fmt, ## args) #else -# define _dl_debug_early(fmt, args...) +# define _dl_debug_early(fmt, args...) do {} while (0) #endif /* __SUPPORT_LD_DEBUG_EARLY__ */ #ifndef NULL -- cgit v1.2.3