aboutsummaryrefslogtreecommitdiffstats
path: root/src/support.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-02 15:44:21 +0200
committerMax Kellermann <max@duempel.org>2008-10-02 15:44:21 +0200
commit36470979d9f3518217fc26987558dafb3ab36f5c (patch)
tree5ebeb5b306faafca9c52f1696f4be9851b4fa9b1 /src/support.c
parent9526f180e6f55654c99bd8d66c71612a32b0fb4e (diff)
downloadmpd-36470979d9f3518217fc26987558dafb3ab36f5c.tar.gz
mpd-36470979d9f3518217fc26987558dafb3ab36f5c.tar.xz
mpd-36470979d9f3518217fc26987558dafb3ab36f5c.zip
removed the debugging function D()
gdb is for debugging. We don't need D() calls littered all over.
Diffstat (limited to 'src/support.c')
-rw-r--r--src/support.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/support.c b/src/support.c
index 6cf61137c..bde8d1914 100644
--- a/src/support.c
+++ b/src/support.c
@@ -200,7 +200,6 @@ utf8_to_locale(const char *utf8str)
g_get_charset(&charset);
screen_status_printf(_("Error: Unable to convert characters to %s"),
charset);
- D("utf8_to_locale(): %s\n", error->message);
g_error_free(error);
return g_strdup(utf8str);
}
@@ -229,7 +228,6 @@ locale_to_utf8(const char *localestr)
&error);
if (error) {
screen_status_printf(_("Error: Unable to convert characters to UTF-8"));
- D("locale_to_utf8: %s\n", error->message);
g_error_free(error);
return g_strdup(localestr);
}