From a24c265be9849051baebbc75046e2d9a592fe94b Mon Sep 17 00:00:00 2001 From: cpk Date: Thu, 8 Nov 2001 23:54:38 +0000 Subject: [PATCH] Yikes! I've committed some major crap that contained leftovers from Efsd. Okay. The "can't kill windows" bugs people are seeing are because of broken refcount handling. I'm looking into it right now. SVN revision: 5660 --- src/debug.c | 2 +- src/debug.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/debug.c b/src/debug.c index ecc8da545..8f691e178 100644 --- a/src/debug.c +++ b/src/debug.c @@ -72,7 +72,7 @@ e_debug_enter(const char *file, const char *func) void -e_debug_D_RETURN(const char *file, const char *func) +e_debug_return(const char *file, const char *func) { printf("RETURN "); debug_print_info(); diff --git a/src/debug.h b/src/debug.h index e0e50d9cb..455986070 100644 --- a/src/debug.h +++ b/src/debug.h @@ -40,17 +40,17 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. void e_debug_enter(const char *file, const char *func); void e_debug_return(const char *file, const char *func); -#define D_ENTER efsd_debug_enter(__FILE__, __FUNCTION__) +#define D_ENTER e_debug_enter(__FILE__, __FUNCTION__) #define D_RETURN \ { \ - efsd_debug_return(__FILE__, __FUNCTION__); \ + e_debug_return(__FILE__, __FUNCTION__); \ return; \ } #define D_RETURN_(x) \ { \ - efsd_debug_return(__FILE__, __FUNCTION__); \ + e_debug_return(__FILE__, __FUNCTION__); \ \ return x; \ }