# HG changeset patch # User Jonathan Schleifer # Date 1222982404 -7200 # Node ID 0b44f32ea243f2c9858fccec8212015da791b093 # Parent 7da84f662ce20d3bc19f379cdc0e32fad8f70959 It is idiotic to exclude that printf out of the #ifdefs if it uses variables defined only inside the #ifdef... Fixed. diff -r 7da84f662ce2 -r 0b44f32ea243 src/audacious/strings.c --- a/src/audacious/strings.c Thu Oct 02 23:17:53 2008 +0200 +++ b/src/audacious/strings.c Thu Oct 02 23:20:04 2008 +0200 @@ -327,11 +327,9 @@ gchar **symbols; nsymbols = backtrace(addrbuf, nsymmax); symbols = backtrace_symbols(addrbuf, nsymbols); -#endif fprintf(stderr, "WARNING! String '%s' was not UTF-8! Backtrace (%d):\n", str, nsymbols); -#ifdef HAVE_EXECINFO for (i = 0; i < nsymbols; i++) fprintf(stderr, "#%d > %s\n", i, symbols[i]);