diff --git a/src/gnome-utils/gnc-html-graph-gog.c b/src/gnome-utils/gnc-html-graph-gog.c index fb28286453..889e2fafc0 100644 --- a/src/gnome-utils/gnc-html-graph-gog.c +++ b/src/gnome-utils/gnc-html-graph-gog.c @@ -100,7 +100,7 @@ read_doubles(const char * string, int nvalues) double * retval = g_new0(double, nvalues); // guile is going to (puts ...) the elements of the double array - // together. In non-POSIX locales, tthat will be in a format that + // together. In non-POSIX locales, that will be in a format that // the locale-specific sscanf will not be able to parse. gnc_push_locale("C"); { @@ -326,7 +326,6 @@ handle_piechart(gnc_html * html, GtkHTMLEmbedded * eb, gpointer d) sscanf( datasizeStr, "%d", &datasize ); data = read_doubles( dataStr, datasize ); labels = read_strings( labelsStr, datasize ); - _debug_print_array(labels, datasize); colors = read_strings( colorStr, datasize ); }