From: RĂ©mi Denis-Courmont Date: Sun, 11 Apr 2010 16:58:24 +0000 (+0300) Subject: Lower the noise level X-Git-Tag: 1.1.0-pre1~31 X-Git-Url: https://git.sesse.net/?p=vlc;a=commitdiff_plain;h=91bcac559fc638fa905e2f87e1eb8341fb2c6b55 Lower the noise level --- diff --git a/bin/override.c b/bin/override.c index 113a638445..654f2cf5ba 100644 --- a/bin/override.c +++ b/bin/override.c @@ -38,6 +38,9 @@ void vlc_enable_override (void); #ifdef HAVE_EXECINFO_H # include #endif +#ifdef NDEBUG +# undef HAVE_BACKTRACE +#endif static bool override = false; @@ -56,7 +59,7 @@ static void vlogbug (const char *level, const char *func, const char *fmt, va_list ap) { #ifdef HAVE_BACKTRACE - const size_t framec = 8; + const size_t framec = 4; void *framev[framec]; backtrace (framev, framec);